X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=secnet.git;a=blobdiff_plain;f=dh.c;h=2383192fdc4ea2e807fc353e30b67e9a1a9130cd;hp=2ee93fb327399160e4be9272fb5fcdf6fa839389;hb=065e1922e00c787775b595badce0e40a999a6afb;hpb=fe5e9cc422cd72526ccfceffbc7e5af8ac83b407 diff --git a/dh.c b/dh.c index 2ee93fb..2383192 100644 --- a/dh.c +++ b/dh.c @@ -1,5 +1,6 @@ #include #include +#include #include "secnet.h" #include "util.h" @@ -11,7 +12,7 @@ struct dh { MP_INT p,g; /* prime modulus and generator */ }; -static string_t dh_makepublic(void *sst, uint8_t *secret, uint32_t secretlen) +static string_t dh_makepublic(void *sst, uint8_t *secret, int32_t secretlen) { struct dh *st=sst; string_t r; @@ -32,9 +33,9 @@ static string_t dh_makepublic(void *sst, uint8_t *secret, uint32_t secretlen) } static dh_makeshared_fn dh_makeshared; -static void dh_makeshared(void *sst, uint8_t *secret, uint32_t secretlen, +static void dh_makeshared(void *sst, uint8_t *secret, int32_t secretlen, cstring_t rempublic, uint8_t *sharedsecret, - uint32_t buflen) + int32_t buflen) { struct dh *st=sst; MP_INT a, b, c; @@ -113,12 +114,20 @@ static list_t *dh_apply(closure_t *self, struct cloc loc, dict_t *context, cfgfatal(loc,"diffie-hellman","modulus must be a prime\n"); } } - st->ops.len=mpz_sizeinbase(&st->p,2)/8; + + size_t sz=mpz_sizeinbase(&st->p,2)/8; + if (sz>INT_MAX) { + cfgfatal(loc,"diffie-hellman","modulus far too large\n"); + } + if (mpz_cmp(&st->g,&st->p) >= 0) { + cfgfatal(loc,"diffie-hellman","generator must be less than modulus\n"); + } + + st->ops.len=sz; return new_closure(&st->cl); } -init_module dh_module; void dh_module(dict_t *dict) { add_closure(dict,"diffie-hellman",dh_apply);