class documentation

An x509 certificate request.

Certificate requests are given to certificate authorities to be signed and returned resulting in an actual certificate.

Class Method load Undocumented
Method dump Undocumented
Method getSubject Retrieve the subject of this certificate request.
Instance Variable original The underlying CSR object.

Inherited from CertBase:

Method __conform__ Convert this CertBase into a provider of the given interface.
Method __init__ Undocumented
Method _copyName Undocumented
def load(cls, requestData: bytes, requestFormat: int = crypto.FILETYPE_ASN1) -> CertificateRequest: (source)

Undocumented

def dump(self, format: int = crypto.FILETYPE_ASN1) -> bytes: (source)

Undocumented

def getSubject(self) -> DistinguishedName: (source)

Retrieve the subject of this certificate request.

Returns
DistinguishedNameA copy of the subject of this certificate request.
original: x509.CertificateSigningRequest = (source)

The underlying CSR object.