| 30 | ) |
| 31 | |
| 32 | type clientHandshakeState struct { |
| 33 | c *Conn |
| 34 | ctx context.Context |
| 35 | serverHello *serverHelloMsg |
| 36 | hello *clientHelloMsg |
| 37 | suite *cipherSuite |
| 38 | finishedHash finishedHash |
| 39 | masterSecret []byte |
| 40 | session *SessionState // the session being resumed |
| 41 | ticket []byte // a fresh ticket received during this handshake |
| 42 | } |
| 43 | |
| 44 | var testingOnlyForceClientHelloSignatureAlgorithms []SignatureScheme |
| 45 |
nothing calls this directly
no outgoing calls
no test coverage detected