type crypto.SignerOpts
11 uses
crypto (current package)
crypto.go#L198: Sign(rand io.Reader, digest []byte, opts SignerOpts) (signature []byte, err error)
crypto.go#L202: type SignerOpts interface {
crypto/ecdsa
ecdsa.go#L149: func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {
crypto/ed25519
ed25519.go#L88: func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) {
crypto/rsa
rsa.go#L160: func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {
crypto/tls
handshake_client.go#L699: signOpts := crypto.SignerOpts(sigHash)
handshake_client_tls13.go#L676: signOpts := crypto.SignerOpts(sigHash)
handshake_server_tls13.go#L703: signOpts := crypto.SignerOpts(sigHash)
key_agreement.go#L229: signOpts := crypto.SignerOpts(sigHash)
crypto/x509
x509.go#L1639: var signerOpts crypto.SignerOpts = hashFunc
x509.go#L2434: var signerOpts crypto.SignerOpts = hashFunc
|
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. |