crypto/tls.clientHelloMsg.cipherSuites (field)
29 uses
crypto/tls (current package)
handshake_client.go#L86: hello.cipherSuites = make([]uint16, 0, len(possibleCipherSuites))
handshake_client.go#L98: hello.cipherSuites = append(hello.cipherSuites, suiteId)
handshake_client.go#L121: hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13()...)
handshake_client.go#L295: if mutualCipherSuite(hello.cipherSuites, session.cipherSuite) == nil {
handshake_client.go#L316: for _, offeredID := range hello.cipherSuites {
handshake_client.go#L449: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client_tls13.go#L146: selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
handshake_messages.go#L74: cipherSuites []uint16
handshake_messages.go#L111: for _, suite := range m.cipherSuites {
handshake_messages.go#L361: m.cipherSuites = []uint16{}
handshake_messages.go#L371: m.cipherSuites = append(m.cipherSuites, suite)
handshake_server.go#L301: supportedList = hs.clientHello.cipherSuites
handshake_server.go#L307: if c.config.CipherSuites == nil && !aesgcmPreferred(hs.clientHello.cipherSuites) {
handshake_server.go#L311: preferenceList = hs.clientHello.cipherSuites
handshake_server.go#L328: for _, id := range hs.clientHello.cipherSuites {
handshake_server.go#L393: for _, id := range hs.clientHello.cipherSuites {
handshake_server.go#L838: CipherSuites: clientHello.cipherSuites,
handshake_server_tls13.go#L107: for _, id := range hs.clientHello.cipherSuites {
handshake_server_tls13.go#L153: supportedList = hs.clientHello.cipherSuites
handshake_server_tls13.go#L158: if !aesgcmPreferred(hs.clientHello.cipherSuites) {
handshake_server_tls13.go#L162: preferenceList = hs.clientHello.cipherSuites
handshake_server_tls13.go#L475: len(ch.cipherSuites) != len(ch1.cipherSuites) ||
handshake_server_tls13.go#L487: for i := range ch.cipherSuites {
handshake_server_tls13.go#L488: if ch.cipherSuites[i] != ch1.cipherSuites[i] {
 |
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. |