(version uint16, suite *cipherSuite)
| 103 | } |
| 104 | |
| 105 | func prfForVersion(version uint16, suite *cipherSuite) prfFunc { |
| 106 | prf, _ := prfAndHashForVersion(version, suite) |
| 107 | return prf |
| 108 | } |
| 109 | |
| 110 | // masterFromPreMasterSecret generates the master secret from the pre-master |
| 111 | // secret. See RFC 5246, Section 8.1. |
no test coverage detected
searching dependent graphs…