clientSum returns the contents of the verify_data member of a client's Finished message.
(masterSecret []byte)
| 200 | // clientSum returns the contents of the verify_data member of a client's |
| 201 | // Finished message. |
| 202 | func (h finishedHash) clientSum(masterSecret []byte) []byte { |
| 203 | out := make([]byte, finishedVerifyLength) |
| 204 | h.prf(out, masterSecret, clientFinishedLabel, h.Sum()) |
| 205 | return out |
| 206 | } |
| 207 | |
| 208 | // serverSum returns the contents of the verify_data member of a server's |
| 209 | // Finished message. |
no test coverage detected