| 1329 | # RFC3852 sect 10.2.1 |
| 1330 | |
| 1331 | class CMS_RevocationInfoChoice(ASN1_Packet): |
| 1332 | ASN1_codec = ASN1_Codecs.BER |
| 1333 | ASN1_root = ASN1F_CHOICE( |
| 1334 | "crl", None, |
| 1335 | ASN1F_PACKET("crl", X509_CRL(), X509_Cert), |
| 1336 | # -- TODO: 1 |
| 1337 | ) |
| 1338 | |
| 1339 | |
| 1340 | # RFC3852 sect 10.2.2 |
no test coverage detected
searching dependent graphs…