| 1671 | # RFC 5272 sect 3.2.1.1 |
| 1672 | |
| 1673 | class CMC_TaggedAttribute(ASN1_Packet): |
| 1674 | ASN1_codec = ASN1_Codecs.BER |
| 1675 | ASN1_root = ASN1F_SEQUENCE( |
| 1676 | ASN1F_INTEGER("bodyPartID", 0), |
| 1677 | ASN1F_OID("type", "0"), # attrType for compat |
| 1678 | ASN1F_SET_OF("attrValues", [], X509_AttributeValue), |
| 1679 | ) |
| 1680 | |
| 1681 | |
| 1682 | # RFC 5272 sect 3.2.1.2.1 |
nothing calls this directly
no test coverage detected
searching dependent graphs…