| 325 | |
| 326 | |
| 327 | class X509_Attribute(ASN1_Packet): |
| 328 | ASN1_codec = ASN1_Codecs.BER |
| 329 | ASN1_root = ASN1F_SEQUENCE( |
| 330 | ASN1F_OID("type", "2.5.4.6"), |
| 331 | ASN1F_SET_OF("values", |
| 332 | [X509_AttributeValue()], |
| 333 | X509_AttributeValue)) |
| 334 | |
| 335 | |
| 336 | class X509_AttributeTypeAndValue(ASN1_Packet): |
no test coverage detected
searching dependent graphs…