crypto/tls.certificateRequestMsg.supportedSignatureAlgorithms (field)
12 uses
crypto/tls (current package)
handshake_client.go#L598: signatureAlgorithm, err := selectSignatureScheme(c.vers, chainToSend, certReq.supportedSignatureAlgorithms)
handshake_client.go#L925: cri.SignatureSchemes = make([]SignatureScheme, 0, len(certReq.supportedSignatureAlgorithms))
handshake_client.go#L926: for _, sigScheme := range certReq.supportedSignatureAlgorithms {
handshake_messages.go#L1574: supportedSignatureAlgorithms []SignatureScheme
handshake_messages.go#L1592: length += 2 + 2*len(m.supportedSignatureAlgorithms)
handshake_messages.go#L1607: n := len(m.supportedSignatureAlgorithms) * 2
handshake_messages.go#L1611: for _, sigAlgo := range m.supportedSignatureAlgorithms {
handshake_messages.go#L1671: m.supportedSignatureAlgorithms = make([]SignatureScheme, numSigAlgos)
handshake_messages.go#L1672: for i := range m.supportedSignatureAlgorithms {
handshake_messages.go#L1673: m.supportedSignatureAlgorithms[i] = SignatureScheme(data[0])<<8 | SignatureScheme(data[1])
handshake_server.go#L518: certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms
handshake_server.go#L622: if !isSupportedSignatureAlgorithm(certVerify.signatureAlgorithm, certReq.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. |