func crypto/ecdsa.Verify

3 uses

	crypto/ecdsa (current package)
		ecdsa.go#L292: func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
		ecdsa.go#L353: 	return Verify(pub, hash, r, s)

	github.com/aws/aws-sdk-go-v2/internal/v4a/internal/crypto
		ecc.go#L70: 	return ecdsa.Verify(key, hash, ecdsaSignature.R, ecdsaSignature.S), nil