summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-07-02 13:26:36 +0000
committertb <>2023-07-02 13:26:36 +0000
commita88c8d13465dce4e2d4d27f60d8ac8d14b2d1710 (patch)
tree6416933910d26d6ce6c6d47bed1fab9d20a64b84
parent938d9620b7dbf654cd96f0bf6704f11357273316 (diff)
downloadopenbsd-a88c8d13465dce4e2d4d27f60d8ac8d14b2d1710.tar.gz
openbsd-a88c8d13465dce4e2d4d27f60d8ac8d14b2d1710.tar.bz2
openbsd-a88c8d13465dce4e2d4d27f60d8ac8d14b2d1710.zip
Revert hunk accidentally committed in r1.39
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_ossl.c12
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: