X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/609affae0305784d87f2357488fba35699a04098..fbfcb6c0ffbad26c7eae30a7590e9d7897331a31:/pub/rsa-gen.c diff --git a/pub/rsa-gen.c b/pub/rsa-gen.c index b381bcd0..ec16a122 100644 --- a/pub/rsa-gen.c +++ b/pub/rsa-gen.c @@ -61,7 +61,6 @@ static int genprime(mp **pp, mp **dd, const char *name, { pgen_jumpctx jctx; pfilt j; mp *p = MP_NEWSEC, *t = MP_NEW, *u = MP_NEW; - rabin rb; mpw p3, j3, a; int rc = -1; @@ -105,7 +104,7 @@ static int genprime(mp **pp, mp **dd, const char *name, jctx.j = &j; p = pgen(name, p, p, event, ectx, nsteps, pgen_jump, &jctx, - rabin_iters(nbits), pgen_test, &rb); + PGEN_BAILLIEPSWNTESTS, pgen_bailliepswtest, 0); if (!p) goto end;