| 51 | } |
| 52 | |
| 53 | type serverHandshakeStateTLS13 struct { |
| 54 | c *Conn |
| 55 | ctx context.Context |
| 56 | clientHello *clientHelloMsg |
| 57 | hello *serverHelloMsg |
| 58 | sentDummyCCS bool |
| 59 | usingPSK bool |
| 60 | earlyData bool |
| 61 | suite *cipherSuiteTLS13 |
| 62 | cert *Certificate |
| 63 | sigAlg SignatureScheme |
| 64 | earlySecret *tls13.EarlySecret |
| 65 | sharedKey []byte |
| 66 | handshakeSecret *tls13.HandshakeSecret |
| 67 | masterSecret *tls13.MasterSecret |
| 68 | trafficSecret []byte // client_application_traffic_secret_0 |
| 69 | transcript hash.Hash |
| 70 | clientFinished []byte |
| 71 | echContext *echServerContext |
| 72 | } |
| 73 | |
| 74 | var ( |
| 75 | ed25519Priv ed25519.PrivateKey |
nothing calls this directly
no outgoing calls
no test coverage detected