| 1577 | |
| 1578 | |
| 1579 | class CMS_EncryptedContentInfo(ASN1_Packet): |
| 1580 | ASN1_codec = ASN1_Codecs.BER |
| 1581 | ASN1_root = ASN1F_SEQUENCE( |
| 1582 | ASN1F_OID("contentType", "1.2.840.113549.1.7.2"), |
| 1583 | ASN1F_PACKET("contentEncryptionAlgorithm", |
| 1584 | X509_AlgorithmIdentifier(), |
| 1585 | X509_AlgorithmIdentifier), |
| 1586 | ASN1F_optional( |
| 1587 | ASN1F_STRING("encryptedContent", "", |
| 1588 | implicit_tag=0x80), |
| 1589 | ) |
| 1590 | ) |
| 1591 | |
| 1592 | |
| 1593 | class CMS_EnvelopedData(ASN1_Packet): |
no test coverage detected
searching dependent graphs…