| 1416 | # RFC3852 sect 5.4 |
| 1417 | |
| 1418 | class CMS_SignedAttrsForSignature(ASN1_Packet): |
| 1419 | ASN1_codec = ASN1_Codecs.BER |
| 1420 | ASN1_root = ASN1F_SET_OF( |
| 1421 | "signedAttrs", |
| 1422 | None, |
| 1423 | X509_Attribute, |
| 1424 | ) |
| 1425 | |
| 1426 | |
| 1427 | # RFC3852 sect 5.1 |
no test coverage detected
searching dependent graphs…