From: Andy Polyakov Date: Tue, 18 Sep 2007 20:55:10 +0000 (+0000) Subject: Minimize stack utilization in probable_prime [from HEAD]. X-Git-Tag: OpenSSL_0_9_8f~30 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ab011d51be7c468899b486c235fc6db17d51a959;p=oweals%2Fopenssl.git Minimize stack utilization in probable_prime [from HEAD]. --- diff --git a/crypto/bn/bn_prime.c b/crypto/bn/bn_prime.c index 5bab019553..7b25979dd1 100644 --- a/crypto/bn/bn_prime.c +++ b/crypto/bn/bn_prime.c @@ -377,14 +377,14 @@ static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1, static int probable_prime(BIGNUM *rnd, int bits) { int i; - BN_ULONG mods[NUMPRIMES]; + prime_t mods[NUMPRIMES]; BN_ULONG delta,maxdelta; again: if (!BN_rand(rnd,bits,1,1)) return(0); /* we now have a random number 'rand' to test. */ for (i=1; i