| 1555 | # RFC3852 sect 6.1 |
| 1556 | |
| 1557 | class CMS_OriginatorInfo(ASN1_Packet): |
| 1558 | ASN1_codec = ASN1_Codecs.BER |
| 1559 | ASN1_root = ASN1F_SEQUENCE( |
| 1560 | ASN1F_optional( |
| 1561 | ASN1F_SET_OF( |
| 1562 | "certs", |
| 1563 | None, |
| 1564 | CMS_CertificateChoices, |
| 1565 | implicit_tag=0xA0, |
| 1566 | ) |
| 1567 | ), |
| 1568 | ASN1F_optional( |
| 1569 | ASN1F_SET_OF( |
| 1570 | "crls", |
| 1571 | None, |
| 1572 | CMS_RevocationInfoChoice, |
| 1573 | implicit_tag=0xA1, |
| 1574 | ) |
| 1575 | ), |
| 1576 | ) |
| 1577 | |
| 1578 | |
| 1579 | class CMS_EncryptedContentInfo(ASN1_Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…