29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 0d6710289307d277ebc3354105c965b6e8ba8eb0 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Weiser <samuel.weiser@iaik.tugraz.at>
|
|
Date: Fri, 9 Feb 2018 14:11:47 +0100
|
|
Subject: [PATCH] consttime flag changed
|
|
|
|
Reviewed-by: Rich Salz <rsalz@openssl.org>
|
|
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
|
|
Reviewed-by: Matt Caswell <matt@openssl.org>
|
|
(Merged from https://github.com/openssl/openssl/pull/5170)
|
|
|
|
(cherry picked from commit 7150a4720af7913cae16f2e4eaf768b578c0b298)
|
|
---
|
|
crypto/rsa/rsa_gen.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Cryptlib/OpenSSL/crypto/rsa/rsa_gen.c b/Cryptlib/OpenSSL/crypto/rsa/rsa_gen.c
|
|
index 610d82db665..9ca5dfefb70 100644
|
|
--- a/Cryptlib/OpenSSL/crypto/rsa/rsa_gen.c
|
|
+++ b/Cryptlib/OpenSSL/crypto/rsa/rsa_gen.c
|
|
@@ -156,7 +156,7 @@ static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value,
|
|
if (BN_copy(rsa->e, e_value) == NULL)
|
|
goto err;
|
|
|
|
- BN_set_flags(rsa->e, BN_FLG_CONSTTIME);
|
|
+ BN_set_flags(r2, BN_FLG_CONSTTIME);
|
|
/* generate p and q */
|
|
for (;;) {
|
|
if (!BN_generate_prime_ex(rsa->p, bitsp, 0, NULL, NULL, cb))
|