| 162 | |
| 163 | |
| 164 | class _TLSRandomBytesField(StrFixedLenField): |
| 165 | def i2repr(self, pkt, x): |
| 166 | if x is None: |
| 167 | return repr(x) |
| 168 | return repr_hex(self.i2h(pkt, x)) |
| 169 | |
| 170 | |
| 171 | class _SessionIDField(StrLenField): |
no outgoing calls
no test coverage detected
searching dependent graphs…