[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Paul I. Dale
pauli at openssl.org
Mon Sep 3 00:43:21 UTC 2018
The branch OpenSSL_1_1_0-stable has been updated
via f2ce14d6cfa83c16b36319d71b245a388ddcc1ce (commit)
from dfbc526e30b2e30cb574a727b3319e4a6125c9e3 (commit)
- Log -----------------------------------------------------------------
commit f2ce14d6cfa83c16b36319d71b245a388ddcc1ce
Author: Pauli <paul.dale at oracle.com>
Date: Mon Sep 3 07:37:38 2018 +1000
Check the return from BN_sub() in BN_X931_generate_Xpq().
Reviewed-by: Tim Hudson <tjh at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7088)
(cherry picked from commit 6bcfcf16bf6aef4f9ec267d8b86ae1bffd8deab9)
-----------------------------------------------------------------------
Summary of changes:
crypto/bn/bn_x931p.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/crypto/bn/bn_x931p.c b/crypto/bn/bn_x931p.c
index 8bfbcac..24f6a85 100644
--- a/crypto/bn/bn_x931p.c
+++ b/crypto/bn/bn_x931p.c
@@ -184,8 +184,10 @@ int BN_X931_generate_Xpq(BIGNUM *Xp, BIGNUM *Xq, int nbits, BN_CTX *ctx)
for (i = 0; i < 1000; i++) {
if (!BN_rand(Xq, nbits, BN_RAND_TOP_TWO, BN_RAND_BOTTOM_ANY))
goto err;
+
/* Check that |Xp - Xq| > 2^(nbits - 100) */
- BN_sub(t, Xp, Xq);
+ if (!BN_sub(t, Xp, Xq))
+ goto err;
if (BN_num_bits(t) > (nbits - 100))
break;
}
More information about the openssl-commits
mailing list