| 1656 | |
| 1657 | |
| 1658 | class PKCS10_CertificationRequest(ASN1_Packet): |
| 1659 | ASN1_codec = ASN1_Codecs.BER |
| 1660 | ASN1_root = ASN1F_SEQUENCE( |
| 1661 | ASN1F_PACKET("certificationRequestInfo", PKCS10_CertificationRequestInfo(), |
| 1662 | PKCS10_CertificationRequestInfo), |
| 1663 | ASN1F_PACKET("signatureAlgorithm", X509_AlgorithmIdentifier(), |
| 1664 | X509_AlgorithmIdentifier), |
| 1665 | ASN1F_BIT_STRING("signature", ASN1F_BIT_STRING("", "")), |
| 1666 | ) |
| 1667 | |
| 1668 | |
| 1669 | # based on CMC # |
no test coverage detected
searching dependent graphs…