func crypto/rsa.VerifyPKCS1v15

9 uses

	crypto/rsa (current package)
		pkcs1v15.go#L266: 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#L847: 			return rsa.VerifyPKCS1v15(pub, hashType, signed, signature)

	golang.org/x/crypto/openpgp/packet
		public_key.go#L523: 		err = rsa.VerifyPKCS1v15(rsaPublicKey, sig.Hash, hashBytes, padToKeySize(rsaPublicKey, sig.RSASignature.bytes))
		public_key.go#L574: 		if err = rsa.VerifyPKCS1v15(rsaPublicKey, sig.Hash, hashBytes, padToKeySize(rsaPublicKey, sig.RSASignature.bytes)); err != nil {
		public_key_v3.go#L211: 		if err = rsa.VerifyPKCS1v15(pk.PublicKey, sig.Hash, hashBytes, sig.RSASignature.bytes); err != nil {

	golang.org/x/crypto/ssh
		keys.go#L398: 	return rsa.VerifyPKCS1v15((*rsa.PublicKey)(r), hash, digest, sig.Blob)

	golang.org/x/oauth2/jws
		jws.go#L181: 	return rsa.VerifyPKCS1v15(key, crypto.SHA256, h.Sum(nil), []byte(signatureString))

	google.golang.org/api/idtoken
		validate.go#L179: 	return rsa.VerifyPKCS1v15(pk, crypto.SHA256, hashedContent, sig)