crypto/tls.clientHandshakeState.suite (field)
21 uses
crypto/tls (current package)
handshake_client.go#L29: suite *cipherSuite
handshake_client.go#L379: hs.finishedHash = newFinishedHash(c.vers, hs.suite)
handshake_client.go#L442: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random)
handshake_client.go#L449: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client.go#L454: hs.c.cipherSuite = hs.suite.id
handshake_client.go#L519: keyAgreement := hs.suite.ka(c.vers)
handshake_client.go#L634: hs.masterSecret = masterFromPreMasterSecret(c.vers, hs.suite, preMasterSecret, hs.hello.random, hs.serverHello.random)
handshake_client.go#L649: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
handshake_client.go#L652: if hs.suite.cipher != nil {
handshake_client.go#L653: clientCipher = hs.suite.cipher(clientKey, clientIV, false /* not for reading */)
handshake_client.go#L654: clientHash = hs.suite.mac(clientMAC)
handshake_client.go#L655: serverCipher = hs.suite.cipher(serverKey, serverIV, true /* for reading */)
handshake_client.go#L656: serverHash = hs.suite.mac(serverMAC)
handshake_client.go#L658: clientCipher = hs.suite.aead(clientKey, clientIV)
handshake_client.go#L659: serverCipher = hs.suite.aead(serverKey, serverIV)
handshake_client.go#L727: if hs.session.cipherSuite != hs.suite.id {
handshake_client.go#L794: cipherSuite: hs.suite.id,
 |
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. |