func crypto/tls.selectSignatureScheme
7 uses
crypto/tls (current package)
auth.go#L231: func selectSignatureScheme(vers uint16, c *Certificate, peerAlgs []SignatureScheme) (SignatureScheme, error) {
common.go#L1134: if _, err := selectSignatureScheme(vers, c, chi.SignatureSchemes); err != nil {
common.go#L1222: if _, err := selectSignatureScheme(cri.Version, c, cri.SignatureSchemes); err != nil {
handshake_client.go#L598: signatureAlgorithm, err := selectSignatureScheme(c.vers, chainToSend, certReq.supportedSignatureAlgorithms)
handshake_client_tls13.go#L582: certVerifyMsg.signatureAlgorithm, err = selectSignatureScheme(c.vers, cert, hs.certReq.supportedSignatureAlgorithms)
handshake_server_tls13.go#L386: hs.sigAlg, err = selectSignatureScheme(c.vers, certificate, hs.clientHello.supportedSignatureAlgorithms)
key_agreement.go#L185: signatureAlgorithm, err = selectSignatureScheme(ka.version, cert, clientHello.supportedSignatureAlgorithms)
 |
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. |