提交 0032bfea 编写于 作者: B Bernd Edlinger

Merge probable_prime_dh_safe with bn_probable_prime_dh

This should avoid half of the trial divisions in probable_prime_dh_safe
and avoid bn_probable_prime_dh generating primes with special properties.
Reviewed-by: NTomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/9387)
上级 7eccef21
...@@ -654,9 +654,6 @@ BIGNUM *int_bn_mod_inverse(BIGNUM *in, ...@@ -654,9 +654,6 @@ BIGNUM *int_bn_mod_inverse(BIGNUM *in,
const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx, const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx,
int *noinv); int *noinv);
int bn_probable_prime_dh(BIGNUM *rnd, int bits,
const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
static ossl_inline BIGNUM *bn_expand(BIGNUM *a, int bits) static ossl_inline BIGNUM *bn_expand(BIGNUM *a, int bits)
{ {
if (bits > (INT_MAX - BN_BITS2 + 1)) if (bits > (INT_MAX - BN_BITS2 + 1))
......
...@@ -23,9 +23,9 @@ static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1, ...@@ -23,9 +23,9 @@ static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1,
const BIGNUM *a1_odd, int k, BN_CTX *ctx, const BIGNUM *a1_odd, int k, BN_CTX *ctx,
BN_MONT_CTX *mont); BN_MONT_CTX *mont);
static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods); static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods);
static int probable_prime_dh_safe(BIGNUM *rnd, int bits, static int probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods,
const BIGNUM *add, const BIGNUM *rem, const BIGNUM *add, const BIGNUM *rem,
BN_CTX *ctx); BN_CTX *ctx);
#define square(x) ((BN_ULONG)(x) * (BN_ULONG)(x)) #define square(x) ((BN_ULONG)(x) * (BN_ULONG)(x))
...@@ -92,13 +92,8 @@ int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, ...@@ -92,13 +92,8 @@ int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe,
if (!probable_prime(ret, bits, safe, mods)) if (!probable_prime(ret, bits, safe, mods))
goto err; goto err;
} else { } else {
if (safe) { if (!probable_prime_dh(ret, bits, safe, mods, add, rem, ctx))
if (!probable_prime_dh_safe(ret, bits, add, rem, ctx)) goto err;
goto err;
} else {
if (!bn_probable_prime_dh(ret, bits, add, rem, ctx))
goto err;
}
} }
if (!BN_GENCB_call(cb, 0, c1++)) if (!BN_GENCB_call(cb, 0, c1++))
...@@ -322,16 +317,23 @@ static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods) ...@@ -322,16 +317,23 @@ static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods)
return 1; return 1;
} }
int bn_probable_prime_dh(BIGNUM *rnd, int bits, static int probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods,
const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) const BIGNUM *add, const BIGNUM *rem,
BN_CTX *ctx)
{ {
int i, ret = 0; int i, ret = 0;
BIGNUM *t1; BIGNUM *t1;
BN_ULONG delta;
BN_ULONG maxdelta = BN_MASK2 - primes[NUMPRIMES - 1];
BN_CTX_start(ctx); BN_CTX_start(ctx);
if ((t1 = BN_CTX_get(ctx)) == NULL) if ((t1 = BN_CTX_get(ctx)) == NULL)
goto err; goto err;
if (maxdelta > BN_MASK2 - BN_get_word(add))
maxdelta = BN_MASK2 - BN_get_word(add);
again:
if (!BN_rand(rnd, bits, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ODD)) if (!BN_rand(rnd, bits, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ODD))
goto err; goto err;
...@@ -342,98 +344,48 @@ int bn_probable_prime_dh(BIGNUM *rnd, int bits, ...@@ -342,98 +344,48 @@ int bn_probable_prime_dh(BIGNUM *rnd, int bits,
if (!BN_sub(rnd, rnd, t1)) if (!BN_sub(rnd, rnd, t1))
goto err; goto err;
if (rem == NULL) { if (rem == NULL) {
if (!BN_add_word(rnd, 1)) if (!BN_add_word(rnd, safe ? 3u : 1u))
goto err; goto err;
} else { } else {
if (!BN_add(rnd, rnd, rem)) if (!BN_add(rnd, rnd, rem))
goto err; goto err;
} }
/* we now have a random number 'rand' to test. */ if (BN_num_bits(rnd) < bits
|| BN_get_word(rnd) < (safe ? 5u : 3u)) {
if (!BN_add(rnd, rnd, add))
goto err;
}
loop: /* we now have a random number 'rnd' to test. */
for (i = 1; i < NUMPRIMES; i++) { for (i = 1; i < NUMPRIMES; i++) {
/* check that rnd is a prime */
BN_ULONG mod = BN_mod_word(rnd, (BN_ULONG)primes[i]); BN_ULONG mod = BN_mod_word(rnd, (BN_ULONG)primes[i]);
if (mod == (BN_ULONG)-1) if (mod == (BN_ULONG)-1)
goto err; goto err;
if (mod <= 1) { mods[i] = (prime_t) mod;
if (!BN_add(rnd, rnd, add))
goto err;
goto loop;
}
}
ret = 1;
err:
BN_CTX_end(ctx);
bn_check_top(rnd);
return ret;
}
static int probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd,
const BIGNUM *rem, BN_CTX *ctx)
{
int i, ret = 0;
BIGNUM *t1, *qadd, *q;
bits--;
BN_CTX_start(ctx);
t1 = BN_CTX_get(ctx);
q = BN_CTX_get(ctx);
qadd = BN_CTX_get(ctx);
if (qadd == NULL)
goto err;
if (!BN_rshift1(qadd, padd))
goto err;
if (!BN_rand(q, bits, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ODD))
goto err;
/* we need ((rnd-rem) % add) == 0 */
if (!BN_mod(t1, q, qadd, ctx))
goto err;
if (!BN_sub(q, q, t1))
goto err;
if (rem == NULL) {
if (!BN_add_word(q, 1))
goto err;
} else {
if (!BN_rshift1(t1, rem))
goto err;
if (!BN_add(q, q, t1))
goto err;
} }
delta = 0;
/* we now have a random number 'rand' to test. */
if (!BN_lshift1(p, q))
goto err;
if (!BN_add_word(p, 1))
goto err;
loop: loop:
for (i = 1; i < NUMPRIMES; i++) { for (i = 1; i < NUMPRIMES; i++) {
/* check that p and q are prime */ /* check that rnd is a prime */
/* if (bits <= 31 && delta <= 0x7fffffff
* check that for p and q gcd(p-1,primes) == 1 (except for 2) && square(primes[i]) > BN_get_word(rnd) + delta)
*/ break;
BN_ULONG pmod = BN_mod_word(p, (BN_ULONG)primes[i]); /* rnd mod p == 1 implies q = (rnd-1)/2 is divisible by p */
BN_ULONG qmod = BN_mod_word(q, (BN_ULONG)primes[i]); if (safe ? (mods[i] + delta) % primes[i] <= 1
if (pmod == (BN_ULONG)-1 || qmod == (BN_ULONG)-1) : (mods[i] + delta) % primes[i] == 0) {
goto err; delta += BN_get_word(add);
if (pmod == 0 || qmod == 0) { if (delta > maxdelta)
if (!BN_add(p, p, padd)) goto again;
goto err;
if (!BN_add(q, q, qadd))
goto err;
goto loop; goto loop;
} }
} }
if (!BN_add_word(rnd, delta))
goto err;
ret = 1; ret = 1;
err: err:
BN_CTX_end(ctx); BN_CTX_end(ctx);
bn_check_top(p); bn_check_top(rnd);
return ret; return ret;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册