class documentation
class CertificateRequest(CertBase): (source)
Constructors: CertificateRequest.load(requestData, requestFormat), CertificateRequest(original)
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 |
| Instance Variable | original |
The underlying CSR object. |
| Method | _subject |
Retrieve the subject of this certificate request. |
Inherited from CertBase:
| Method | __conform__ |
Convert this CertBase into a provider of the given interface. |
| Method | __init__ |
Undocumented |
| Method | get |
Retrieve the subject of this certificate. |
| Method | _copy |
Undocumented |
def load(cls, requestData:
bytes, requestFormat: int = crypto.FILETYPE_ASN1) -> CertificateRequest:
(source)
¶
Undocumented
Retrieve the subject of this certificate request.
| Returns | |
DistinguishedName | A copy of the subject of this certificate request. |