| 802 | |
| 803 | |
| 804 | class X509_ExtComment(ASN1_Packet): |
| 805 | ASN1_codec = ASN1_Codecs.BER |
| 806 | ASN1_root = ASN1F_CHOICE("comment", |
| 807 | ASN1_UTF8_STRING("Dummy comment."), |
| 808 | ASN1F_IA5_STRING, ASN1F_ISO646_STRING, |
| 809 | ASN1F_BMP_STRING, ASN1F_UTF8_STRING) |
| 810 | |
| 811 | |
| 812 | class X509_ExtCertificateTemplateName(ASN1_Packet): |
nothing calls this directly
no test coverage detected