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)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |