func crypto/rsa.SignPKCS1v15

6 uses

	crypto/rsa (current package)
		pkcs1v15.go#L231: func SignPKCS1v15(rand io.Reader, priv *PrivateKey, hash crypto.Hash, hashed []byte) ([]byte, error) {
		rsa.go#L149: 	return SignPKCS1v15(rand, priv, opts.HashFunc(), digest)

	cloud.google.com/go/storage
		post_policy_v4.go#L232: 			return rsa.SignPKCS1v15(rand.Reader, parsedRSAPrivKey, crypto.SHA256, hashedBytes)
		storage.go#L647: 			return rsa.SignPKCS1v15(
		storage.go#L695: 			return rsa.SignPKCS1v15(

	golang.org/x/oauth2/jws
		jws.go#L160: 		return rsa.SignPKCS1v15(rand.Reader, key, crypto.SHA256, h.Sum(nil))