diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/ec/ec_lib.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ec_lib.c b/src/lib/libcrypto/ec/ec_lib.c index 455d44a942..888f1edfcf 100644 --- a/src/lib/libcrypto/ec/ec_lib.c +++ b/src/lib/libcrypto/ec/ec_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_lib.c,v 1.43 2022/03/29 13:48:40 tb Exp $ */ | 1 | /* $OpenBSD: ec_lib.c,v 1.44 2022/03/29 14:03:12 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Originally written by Bodo Moeller for the OpenSSL project. | 3 | * Originally written by Bodo Moeller for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -385,6 +385,12 @@ EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, | |||
385 | } else if (!ec_guess_cofactor(group)) | 385 | } else if (!ec_guess_cofactor(group)) |
386 | return 0; | 386 | return 0; |
387 | 387 | ||
388 | /* Use Hasse's theorem to bound the cofactor. */ | ||
389 | if (BN_num_bits(&group->cofactor) > BN_num_bits(&group->field) + 1) { | ||
390 | ECerror(EC_R_INVALID_GROUP_ORDER); | ||
391 | return 0; | ||
392 | } | ||
393 | |||
388 | return 1; | 394 | return 1; |
389 | } | 395 | } |
390 | 396 | ||