type crypto.Signer
14 uses
crypto (current package)
crypto.go#L180: type Signer interface {
crypto/tls
auth.go#L174: priv, ok := cert.PrivateKey.(crypto.Signer)
auth.go#L266: signer, ok := cert.PrivateKey.(crypto.Signer)
common.go#L1251: if priv, ok := c.PrivateKey.(crypto.Signer); ok {
handshake_client.go#L670: key, ok := chainToSend.PrivateKey.(crypto.Signer)
handshake_client_tls13.go#L680: sig, err := cert.PrivateKey.(crypto.Signer).Sign(c.config.rand(), signed, signOpts)
handshake_server.go#L256: if priv, ok := hs.cert.PrivateKey.(crypto.Signer); ok {
handshake_server_tls13.go#L707: sig, err := hs.cert.PrivateKey.(crypto.Signer).Sign(c.config.rand(), signed, signOpts)
handshake_server_tls13.go#L709: public := hs.cert.PrivateKey.(crypto.Signer).Public()
key_agreement.go#L200: priv, ok := cert.PrivateKey.(crypto.Signer)
crypto/x509
x509.go#L1539: key, ok := priv.(crypto.Signer)
x509.go#L1712: key, ok := priv.(crypto.Signer)
x509.go#L1932: key, ok := priv.(crypto.Signer)
x509.go#L2292: func CreateRevocationList(rand io.Reader, template *RevocationList, issuer *Certificate, priv crypto.Signer) ([]byte, error) {
|
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. |