From d0e7ec6f5e31cc641df38663b7e5eed87e05aac1 Mon Sep 17 00:00:00 2001 From: David Benoit Date: Thu, 13 Jul 2023 12:50:01 -0400 Subject: [PATCH] Fix HashVerifyECDSA function signature in notboring.go --- openssl/notboring.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl/notboring.go b/openssl/notboring.go index 5093cdef..047f9008 100644 --- a/openssl/notboring.go +++ b/openssl/notboring.go @@ -61,7 +61,7 @@ func NewPublicKeyECDSA(curve string, X, Y BigInt) (*PublicKeyECDSA, error) { func HashSignECDSA(priv *PrivateKeyECDSA, hash []byte, h crypto.Hash) (r, s BigInt, err error) { panic("boringcrypto: not available") } -func HashVerifyECDSA(pub *PublicKeyECDSA, msg []byte, r, s *big.Int, h crypto.Hash) bool { +func HashVerifyECDSA(pub *PublicKeyECDSA, msg []byte, r, s *BigInt, h crypto.Hash) bool { panic("boringcrypto: not available") } func SignMarshalECDSA(priv *PrivateKeyECDSA, hash []byte) ([]byte, error) {