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)
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |