func crypto/rsa.VerifyPKCS1v15
5 uses
crypto/rsa (current package)
fips.go#L364: func VerifyPKCS1v15(pub *PublicKey, hash crypto.Hash, hashed []byte, sig []byte) error {
crypto/tls
auth.go#L50: if err := rsa.VerifyPKCS1v15(pubKey, hashFunc, signed, sig); err != nil {
auth.go#L85: if err := rsa.VerifyPKCS1v15(pubKey, hashFunc, hashed, sig); err != nil {
crypto/x509
x509.go#L1022: return rsa.VerifyPKCS1v15(pub, hashType, signed, signature)
github.com/refraction-networking/utls
auth.go#L45: if err := rsa.VerifyPKCS1v15(pubKey, hashFunc, signed, sig); err != nil {
 |
The pages are generated with Golds v0.8.4. (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. |