| 115 | } |
| 116 | |
| 117 | type MasterSecret struct { |
| 118 | secret []byte |
| 119 | hash func() hash.Hash |
| 120 | } |
| 121 | |
| 122 | func (s *HandshakeSecret) MasterSecret() *MasterSecret { |
| 123 | derived := deriveSecret(s.hash, s.secret, "derived", nil) |
nothing calls this directly
no outgoing calls
no test coverage detected