| 94 | # (We might have to dig into scapy field initialization mechanisms...) |
| 95 | # NEVER rely on the key below, which is provided only for debugging purposes. |
| 96 | class RSAPublicKey(ASN1_Packet): |
| 97 | ASN1_codec = ASN1_Codecs.BER |
| 98 | ASN1_root = ASN1F_SEQUENCE( |
| 99 | ASN1F_INTEGER("modulus", 10), |
| 100 | ASN1F_INTEGER("publicExponent", 3)) |
| 101 | |
| 102 | |
| 103 | class RSAOtherPrimeInfo(ASN1_Packet): |
no test coverage detected
searching dependent graphs…