(s *cryptobyte.String)
| 245 | } |
| 246 | |
| 247 | func skipUint16LengthPrefixed(s *cryptobyte.String) bool { |
| 248 | var skip uint16 |
| 249 | if !s.ReadUint16(&skip) { |
| 250 | return false |
| 251 | } |
| 252 | return s.Skip(int(skip)) |
| 253 | } |
| 254 | |
| 255 | type rawExtension struct { |
| 256 | extType uint16 |
no outgoing calls
no test coverage detected
searching dependent graphs…