clientSum returns the contents of the verify_data member of a client's Finished message.
(masterSecret []byte)
| 213 | // clientSum returns the contents of the verify_data member of a client's |
| 214 | // Finished message. |
| 215 | func (h finishedHash) clientSum(masterSecret []byte) []byte { |
| 216 | return h.prf(masterSecret, clientFinishedLabel, h.Sum(), finishedVerifyLength) |
| 217 | } |
| 218 | |
| 219 | // serverSum returns the contents of the verify_data member of a server's |
| 220 | // Finished message. |
no test coverage detected