Revert hunk accidentally committed in r1.39
authortb <tb@openbsd.org>
Sun, 2 Jul 2023 13:26:36 +0000 (13:26 +0000)
committertb <tb@openbsd.org>
Sun, 2 Jul 2023 13:26:36 +0000 (13:26 +0000)
lib/libcrypto/ecdsa/ecs_ossl.c

index b8a0344..728c07d 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecs_ossl.c,v 1.43 2023/07/02 13:18:54 tb Exp $ */
+/* $OpenBSD: ecs_ossl.c,v 1.44 2023/07/02 13:26:36 tb Exp $ */
 /*
  * Written by Nils Larsch for the OpenSSL project
  */
@@ -378,16 +378,6 @@ ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len,
                        break;
        } while (1);
 
-       /*
-        * Ensure that the signature generated can be verified. This ensures
-        * that our implementation is correct, while also potentially detecting
-        * some forms of side-channel attacks.
-        */
-       if (ECDSA_do_verify(dgst, dgst_len, ret, eckey) <= 0) {
-               ECDSAerror(ERR_R_EC_LIB);
-               goto err;
-       }
-
        ok = 1;
 
  err: