type crypto/rsa.PSSOptions
14 uses
crypto/rsa (current package)
pss.go#L235: type PSSOptions struct {
pss.go#L248: func (opts *PSSOptions) HashFunc() crypto.Hash {
pss.go#L252: func (opts *PSSOptions) saltLength() int {
pss.go#L264: func SignPSS(rand io.Reader, priv *PrivateKey, hash crypto.Hash, digest []byte, opts *PSSOptions) ([]byte, error) {
pss.go#L290: func VerifyPSS(pub *PublicKey, hash crypto.Hash, digest []byte, sig []byte, opts *PSSOptions) error {
rsa.go#L145: if pssOpts, ok := opts.(*PSSOptions); ok {
crypto/tls
auth.go#L53: signOpts := &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash}
handshake_client.go#L620: signOpts = &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash, Hash: sigHash}
handshake_client_tls13.go#L598: signOpts = &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash, Hash: sigHash}
handshake_server_tls13.go#L634: signOpts = &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash, Hash: sigHash}
key_agreement.go#L207: signOpts = &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash, Hash: sigHash}
crypto/x509
x509.go#L845: return rsa.VerifyPSS(pub, hashType, signed, signature, &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash})
x509.go#L2221: signerOpts = &rsa.PSSOptions{
x509.go#L2849: signerOpts = &rsa.PSSOptions{
 |
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. |