ClientApplicationTrafficSecret derives the client_application_traffic_secret_0 from the master secret and the transcript up to the server Finished.
(transcript hash.Hash)
| 130 | // ClientApplicationTrafficSecret derives the client_application_traffic_secret_0 |
| 131 | // from the master secret and the transcript up to the server Finished. |
| 132 | func (s *MasterSecret) ClientApplicationTrafficSecret(transcript hash.Hash) []byte { |
| 133 | return deriveSecret(s.hash, s.secret, clientApplicationTrafficLabel, transcript) |
| 134 | } |
| 135 | |
| 136 | // ServerApplicationTrafficSecret derives the server_application_traffic_secret_0 |
| 137 | // from the master secret and the transcript up to the server Finished. |
no test coverage detected