| 1759 | # https://learn.microsoft.com/en-us/windows/win32/seccertenroll/cmc-attributes |
| 1760 | |
| 1761 | class CMC_AddAttributes(ASN1_Packet): |
| 1762 | ASN1_codec = ASN1_Codecs.BER |
| 1763 | ASN1_root = ASN1F_SEQUENCE( |
| 1764 | ASN1F_INTEGER("pkiDataReference", 0), |
| 1765 | ASN1F_SEQUENCE_OF("certReferences", [], ASN1F_INTEGER), |
| 1766 | ASN1F_SET_OF("attributes", X509_Attribute(), X509_Attribute), |
| 1767 | ) |
| 1768 | |
| 1769 | |
| 1770 | _X509_ATTRIBUTE_TYPE["1.3.6.1.4.1.311.10.10.1"] = CMC_AddAttributes |
nothing calls this directly
no test coverage detected
searching dependent graphs…