readUint24LengthPrefixed acts like s.ReadUint24LengthPrefixed, but targets a []byte instead of a cryptobyte.String.
(s *cryptobyte.String, out *[]byte)
| 63 | // readUint24LengthPrefixed acts like s.ReadUint24LengthPrefixed, but targets a |
| 64 | // []byte instead of a cryptobyte.String. |
| 65 | func readUint24LengthPrefixed(s *cryptobyte.String, out *[]byte) bool { |
| 66 | return s.ReadUint24LengthPrefixed((*cryptobyte.String)(out)) |
| 67 | } |
| 68 | |
| 69 | type clientHelloMsg struct { |
| 70 | raw []byte |
no outgoing calls
no test coverage detected
searching dependent graphs…