Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 1.14 KB

X509Certificate.md

File metadata and controls

17 lines (13 loc) · 1.14 KB

X509Certificate

The representation of an X.509 certificate.

Properties

Name Type Description Notes
issuer PkixDistinguishedName [optional]
not_after datetime The date on which the certificate's validity period ends. [optional] [readonly]
not_before datetime The date on which the certificate's validity period begins. [optional] [readonly]
pem_certificate str The base64 encoded certificate in PEM format. [optional]
sha256_fingerprint str The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'. [optional] [readonly]
signature_algorithm str Signature algorithm, as specified in RFC 5280. [optional] [readonly]
subject PkixDistinguishedName [optional]

[Back to Model list] [Back to API list] [Back to README]