Searched refs:ASN1_Error (Results 1 – 3 of 3) sorted by relevance
/external/scapy/scapy/ |
D | asn1fields.py | 55 raise ASN1_Error(err_msg) 105 …raise ASN1_Error("Encoding Error: got %r instead of an %r for field [%s]" % (x, self.ASN1_tag, sel… 412 except (ASN1_Error, ASN1F_badsequence, BER_Decoding_Error): 418 except (ASN1_Error, ASN1F_badsequence, BER_Decoding_Error): 441 raise ASN1_Error(err_msg) 468 raise ASN1_Error("ASN1F_CHOICE: no tag found for one field") 475 raise ASN1_Error("ASN1F_CHOICE: got empty string") 483 raise ASN1_Error("ASN1F_CHOICE: unexpected field")
|
/external/scapy/scapy/asn1/ |
D | asn1.py | 55 class ASN1_Error(Scapy_Exception): class 58 class ASN1_Encoding_Error(ASN1_Error): 61 class ASN1_Decoding_Error(ASN1_Error): 108 raise ASN1_Error("%r does not have any assigned ASN1 object" % self) 115 raise ASN1_Error("Codec %r not found for tag %r" % (codec, self))
|
D | ber.py | 16 …ding_Error,ASN1_BadTag_Decoding_Error,ASN1_Codecs,ASN1_Class_UNIVERSAL,ASN1_Error,ASN1_DECODING_ER… 251 except ASN1_Error as e:
|