| 1508 | |
| 1509 | |
| 1510 | class CMS_RecipientEncryptedKey(ASN1_Packet): |
| 1511 | ASN1_codec = ASN1_Codecs.BER |
| 1512 | ASN1_root = ASN1F_SEQUENCE( |
| 1513 | ASN1F_PACKET("subjectKeyIdentifier", CMS_SubjectKeyIdentifier(), |
| 1514 | CMS_SubjectKeyIdentifier), |
| 1515 | ASN1F_optional( |
| 1516 | ASN1F_GENERALIZED_TIME("date", ""), |
| 1517 | ), |
| 1518 | ASN1F_optional( |
| 1519 | ASN1F_PACKET("other", CMS_OtherKeyAttribute(), CMS_OtherKeyAttribute), |
| 1520 | ), |
| 1521 | ) |
| 1522 | |
| 1523 | |
| 1524 | class CMS_KeyAgreeRecipientInfo(ASN1_Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…