func crypto/rsa.VerifyPKCS1v15

3 uses

	crypto/rsa (current package)
		pkcs1v15.go#L324: func VerifyPKCS1v15(pub *PublicKey, hash crypto.Hash, hashed []byte, sig []byte) error {

	crypto/tls
		auth.go#L45: 		if err := rsa.VerifyPKCS1v15(pubKey, hashFunc, signed, sig); err != nil {

	crypto/x509
		x509.go#L920: 			return rsa.VerifyPKCS1v15(pub, hashType, signed, signature)