X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=blobdiff_plain;f=dh.c;h=2383192fdc4ea2e807fc353e30b67e9a1a9130cd;hp=eb9ae21c7b75a7989bf77a13f1fe1d44ed51b199;hb=92a7d254975db245c3320855515bffc1aebda9e4;hpb=2fe58dfd10216a37f1ece081f926971882de112e diff --git a/dh.c b/dh.c index eb9ae21..2383192 100644 --- a/dh.c +++ b/dh.c @@ -1,38 +1,6 @@ -/*************************************************************************** - * - * Part II Project, "A secure, private IP network" - * Stephen Early - * - * - * $RCSfile: dh.c,v $ - * - * Description: Diffie-Hellman implementation - * - * Copyright: (C) Stephen Early 1995 - * - * $Revision: 1.3 $ - * - * $Date: 1996/05/16 18:38:54 $ - * - * $State: Exp $ - * - ***************************************************************************/ - -/* - * $Log: dh.c,v $ - * Revision 1.3 1996/05/16 18:38:54 sde1000 - * Removed unused hexdigits variable. - * - * Revision 1.2 1996/04/14 16:33:52 sde1000 - * Moved mpbin/mpstring functions into util.c - * - * Revision 1.1 1996/04/14 16:21:47 sde1000 - * Initial revision - * - */ - #include #include +#include #include "secnet.h" #include "util.h" @@ -44,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; @@ -64,9 +32,10 @@ static string_t dh_makepublic(void *sst, uint8_t *secret, uint32_t secretlen) return r; } -static void dh_makeshared(void *sst, uint8_t *secret, uint32_t secretlen, - string_t rempublic, uint8_t *sharedsecret, - uint32_t buflen) +static dh_makeshared_fn dh_makeshared; +static void dh_makeshared(void *sst, uint8_t *secret, int32_t secretlen, + cstring_t rempublic, uint8_t *sharedsecret, + int32_t buflen) { struct dh *st=sst; MP_INT a, b, c; @@ -135,16 +104,30 @@ static list_t *dh_apply(closure_t *self, struct cloc loc, dict_t *context, cfgfatal(loc,"diffie-hellman","you must provide a generator\n"); } - /* Test that the modulus is really prime */ - if (mpz_probab_prime_p(&st->p,5)==0) { - cfgfatal(loc,"diffie-hellman","modulus must be a prime\n"); + i=list_elem(args,2); + if (i && i->type==t_bool && i->data.bool==False) { + Message(M_INFO,"diffie-hellman (%s:%d): skipping modulus " + "primality check\n",loc.file,loc.line); + } else { + /* Test that the modulus is really prime */ + if (mpz_probab_prime_p(&st->p,5)==0) { + 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);