Skip to content

Commit 41a1a03

Browse files
bbandixPierre Rossi
authored andcommitted
FIXUP Increase minimum DH size to 1024 bits
Remove erroneous extra brace. Change-Id: I397cd3ba5368d27c19ea928717b6c186fb6a1cca Reviewed-by: Pierre Rossi <[email protected]>
1 parent 8f3cc60 commit 41a1a03

File tree

1 file changed

+1
-1
lines changed
  • chromium/third_party/boringssl/src/ssl

1 file changed

+1
-1
lines changed

chromium/third_party/boringssl/src/ssl/s3_clnt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,7 @@ int ssl3_get_server_key_exchange(SSL *s)
13261326
goto err;
13271327
}
13281328

1329-
if (DH_num_bits(dh) < 1024) {
1329+
if (DH_num_bits(dh) < 1024)
13301330
{
13311331
OPENSSL_PUT_ERROR(SSL, ssl3_get_server_key_exchange, SSL_R_BAD_DH_P_LENGTH);
13321332
goto err;

0 commit comments

Comments
 (0)