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)
 |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |