| 975 | |
| 976 | |
| 977 | class _ASN1CertAndExt(_GenericTLSSessionInheritance): |
| 978 | name = "Certificate and Extensions" |
| 979 | fields_desc = [_ASN1CertField("cert", ""), |
| 980 | FieldLenField("extlen", None, length_of="ext"), |
| 981 | _ExtensionsField("ext", [], |
| 982 | length_from=lambda pkt: pkt.extlen)] |
| 983 | |
| 984 | def extract_padding(self, s): |
| 985 | return b"", s |
| 986 | |
| 987 | |
| 988 | class _ASN1CertAndExtListField(PacketListField): |
no test coverage detected
searching dependent graphs…