From 5f63363750679039489705151520ec54470ddcb3 Mon Sep 17 00:00:00 2001 From: Sean McGrail <549813+skmcgrail@users.noreply.github.com> Date: Thu, 20 Jul 2023 12:13:11 -0700 Subject: [PATCH] Update crypto/fipsmodule/dh/check.c Co-authored-by: Samuel Chiang --- crypto/fipsmodule/dh/check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/fipsmodule/dh/check.c b/crypto/fipsmodule/dh/check.c index 8a7c142581c..64891f08cf4 100644 --- a/crypto/fipsmodule/dh/check.c +++ b/crypto/fipsmodule/dh/check.c @@ -127,7 +127,7 @@ int DH_check(const DH *dh, int *out_flags) { *out_flags = 0; - /* Don't do any checks at all with an excessively large modulus */ + // Don't do any checks at all with an excessively large modulus if (BN_num_bits(dh->p) > OPENSSL_DH_CHECK_MAX_MODULUS_BITS) { OPENSSL_PUT_ERROR(DH, DH_R_MODULUS_TOO_LARGE); return 0;