func crypto/rsa.VerifyPKCS1v15

4 uses

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

	github.com/golang-jwt/jwt/v5
		rsa.go#L65: 	return rsa.VerifyPKCS1v15(rsaKey, m.Hash, hasher.Sum(nil), sig)