func(secret []byte, label string, seed []byte, keyLen int) []byte
| 19 | ) |
| 20 | |
| 21 | type prfFunc func(secret []byte, label string, seed []byte, keyLen int) []byte |
| 22 | |
| 23 | // Split a premaster secret in two as specified in RFC 4346, Section 5. |
| 24 | func splitPreMasterSecret(secret []byte) (s1, s2 []byte) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…