| 694 | |
| 695 | |
| 696 | class X509_ExtNoticeReference(ASN1_Packet): |
| 697 | ASN1_codec = ASN1_Codecs.BER |
| 698 | ASN1_root = ASN1F_SEQUENCE( |
| 699 | ASN1F_CHOICE("organization", |
| 700 | ASN1_UTF8_STRING("Dummy Organization"), |
| 701 | ASN1F_IA5_STRING, ASN1F_ISO646_STRING, |
| 702 | ASN1F_BMP_STRING, ASN1F_UTF8_STRING), |
| 703 | ASN1F_SEQUENCE_OF("noticeNumbers", [], ASN1P_INTEGER)) |
| 704 | |
| 705 | |
| 706 | class X509_ExtUserNotice(ASN1_Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…