summaryrefslogtreecommitdiffstats
path: root/crypto/deterministic_nonce.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/deterministic_nonce.c')
-rw-r--r--crypto/deterministic_nonce.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/deterministic_nonce.c b/crypto/deterministic_nonce.c
index a37edea2a1..67a5b98d2b 100644
--- a/crypto/deterministic_nonce.c
+++ b/crypto/deterministic_nonce.c
@@ -227,6 +227,10 @@ int ossl_gen_deterministic_nonce_rfc6979(BIGNUM *out, const BIGNUM *q,
} while (ossl_bn_is_word_fixed_top(out, 0)
|| ossl_bn_is_word_fixed_top(out, 1)
|| BN_ucmp(out, q) >= 0);
+#ifdef BN_DEBUG
+ /* With BN_DEBUG on a fixed top number cannot be returned */
+ bn_correct_top(out);
+#endif
ret = 1;
end: