func crypto/rsa.VerifyPSS
4 uses
crypto/rsa (current package)
pss.go#L344: func VerifyPSS(pub *PublicKey, hash crypto.Hash, digest []byte, sig []byte, opts *PSSOptions) error {
crypto/tls
auth.go#L54: if err := rsa.VerifyPSS(pubKey, hashFunc, signed, sig, signOpts); err != nil {
crypto/x509
x509.go#L937: return rsa.VerifyPSS(pub, hashType, signed, signature, &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash})
github.com/golang-jwt/jwt/v5
rsa_pss.go#L106: return rsa.VerifyPSS(rsaKey, m.Hash, hasher.Sum(nil), sig, opts)
 |
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. |