diff options
author | tb <> | 2023-07-02 13:26:36 +0000 |
---|---|---|
committer | tb <> | 2023-07-02 13:26:36 +0000 |
commit | ba8395f5f34f1d7f095fcbdb24b6427010056a97 (patch) | |
tree | 6416933910d26d6ce6c6d47bed1fab9d20a64b84 /src | |
parent | 990e84f7fa2c70c269e911655533a972154800b1 (diff) | |
download | openbsd-ba8395f5f34f1d7f095fcbdb24b6427010056a97.tar.gz openbsd-ba8395f5f34f1d7f095fcbdb24b6427010056a97.tar.bz2 openbsd-ba8395f5f34f1d7f095fcbdb24b6427010056a97.zip |
Revert hunk accidentally committed in r1.39
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/ecdsa/ecs_ossl.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecs_ossl.c b/src/lib/libcrypto/ecdsa/ecs_ossl.c index b8a0344753..728c07d8bb 100644 --- a/src/lib/libcrypto/ecdsa/ecs_ossl.c +++ b/src/lib/libcrypto/ecdsa/ecs_ossl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecs_ossl.c,v 1.43 2023/07/02 13:18:54 tb Exp $ */ | 1 | /* $OpenBSD: ecs_ossl.c,v 1.44 2023/07/02 13:26:36 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Nils Larsch for the OpenSSL project | 3 | * Written by Nils Larsch for the OpenSSL project |
4 | */ | 4 | */ |
@@ -378,16 +378,6 @@ ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len, | |||
378 | break; | 378 | break; |
379 | } while (1); | 379 | } while (1); |
380 | 380 | ||
381 | /* | ||
382 | * Ensure that the signature generated can be verified. This ensures | ||
383 | * that our implementation is correct, while also potentially detecting | ||
384 | * some forms of side-channel attacks. | ||
385 | */ | ||
386 | if (ECDSA_do_verify(dgst, dgst_len, ret, eckey) <= 0) { | ||
387 | ECDSAerror(ERR_R_EC_LIB); | ||
388 | goto err; | ||
389 | } | ||
390 | |||
391 | ok = 1; | 381 | ok = 1; |
392 | 382 | ||
393 | err: | 383 | err: |