func crypto/ecdsa.Verify

6 uses

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

	golang.org/x/crypto/openpgp/packet
		public_key.go#L541: 		if !ecdsa.Verify(ecdsaPublicKey, hashBytes, new(big.Int).SetBytes(sig.ECDSASigR.bytes), new(big.Int).SetBytes(sig.ECDSASigS.bytes)) {

	golang.org/x/crypto/ssh
		keys.go#L691: 	if ecdsa.Verify((*ecdsa.PublicKey)(k), digest, ecSig.R, ecSig.S) {
		keys.go#L817: 	if ecdsa.Verify((*ecdsa.PublicKey)(&k.PublicKey), digest, ecSig.R, ecSig.S) {

	google.golang.org/api/idtoken
		validate.go#L207: 	if valid := ecdsa.Verify(pk, hashedContent, r, s); !valid {