| 1522 | |
| 1523 | |
| 1524 | class CMS_KeyAgreeRecipientInfo(ASN1_Packet): |
| 1525 | ASN1_codec = ASN1_Codecs.BER |
| 1526 | ASN1_root = ASN1F_SEQUENCE( |
| 1527 | CMSVersion("version", 3), |
| 1528 | ASN1F_PACKET("originator", CMS_OriginatorIdentifierOrKey(), |
| 1529 | CMS_OriginatorIdentifierOrKey, |
| 1530 | explicit_tag=0xA0), |
| 1531 | ASN1F_optional( |
| 1532 | ASN1F_STRING("ukm", None, "", |
| 1533 | explicit_tag=0x81), |
| 1534 | ), |
| 1535 | ASN1F_PACKET("keyEncryptionAlgorithm", |
| 1536 | X509_AlgorithmIdentifier(), |
| 1537 | X509_AlgorithmIdentifier), |
| 1538 | ASN1F_SEQUENCE_OF("recipientEncryptedKeys", [], CMS_RecipientEncryptedKey), |
| 1539 | ) |
| 1540 | |
| 1541 | |
| 1542 | # RFC3852 sect 6.2 |
no test coverage detected
searching dependent graphs…