CaX509Certificate

CaX509Certificate
CaX509Certificate

CA certificate in X509 format.

JSON Example
{
    "serial_number": 0,
    "not_after": "string",
    "not_before": "string",
    "signature": [
        "string"
    ],
    "version": 3,
    "issuer_dn": "C=US, OU=DR Division, O=\"VMware, Inc.\", CN=\"VMware, Inc.\"",
    "subject_dn": "C=US, OU=DR Division, O=\"VMware, Inc.\", CN=\"VMware, Inc.\"",
    "sig_alg_name": "SHA256withRSA",
    "sig_alg_oid": "1.2.840.10040.4.3",
    "public_key": "string",
    "public_key_format": "X.509",
    "public_key_algorithm": "RSA",
    "thumbprint": "string",
    "certificate": "string",
    "issuer_unique_id": [
        false
    ],
    "subject_unique_id": [
        false
    ],
    "key_usage": [
        false
    ],
    "issuer_alternative_names": [
        "string"
    ],
    "subject_alternative_names": [
        "string"
    ],
    "extended_key_usage": [
        "string"
    ],
    "trusted_issuer": "C=US, OU=DR Division, O=\"VMware, Inc.\", CN=\"VMware, Inc.\"",
    "root": false
}
integer
serial_number
Optional

The serial number of the certificate. The serial number is an integer assigned by the certification authority to each certificate. It must be unique for each certificate issued by a given CA (i.e., the issuer name and serial number identify a unique certificate).

string As date-time As date-time
not_after
Optional

End date from the validity period of the certificate.

string As date-time As date-time
not_before
Optional

Start date from the validity period of the certificate.

array of string
signature
Optional

Signature value (the raw signature bits) from the certificate.

integer As int32 As int32
version
Optional

Version number from the certificate.

string
issuer_dn
Optional

Issuer distinguished name of the certificate.

string
subject_dn
Optional

Subject distinguished name of the certificate.

string
sig_alg_name
Optional

Gets the signature algorithm name for the certificate signature algorithm.

string
sig_alg_oid
Optional

Signature algorithm OID string from the certificate. An OID is represented by a set of nonnegative whole numbers separated by periods.

string
public_key
Optional

Public key of the certificate.

string
public_key_format
Optional

Public key format of the certificate.

string
public_key_algorithm
Optional

Public key algorithm of the certificate.

string
thumbprint
Optional

Thumbprint of the certificate.

string
certificate
Optional

Certificate in PEM format.

array of boolean
issuer_unique_id
Optional

Issuer unique ID.

array of boolean
subject_unique_id
Optional

Subject unique ID.

array of boolean
key_usage
Optional

Boolean array representing bits of the KeyUsage extension, (OID = 2.5.29.15). The key usage extension defines the purpose (e.g., encipherment, signature, certificate signing) of the key contained in the certificate. The ASN.1 definition for this is:

KeyUsage ::= BIT STRING {
     digitalSignature        (0),
     nonRepudiation          (1),
     keyEncipherment         (2),
     dataEncipherment        (3),
     keyAgreement            (4),
     keyCertSign             (5),
     cRLSign                 (6),
     encipherOnly            (7),
     decipherOnly            (8) }
array of string
issuer_alternative_names
Optional

Issuer alternative names.

array of string
subject_alternative_names
Optional

Subject alternative names.

array of string
extended_key_usage
Optional

Indicates one or more purposes for which the certified public key may be used, in addition to or in place of the basic purposes indicated in the key usage extension field.

string
trusted_issuer
Optional

Trusted issuer of the certificate.

boolean
root
Optional

Whether this is root certificate. If false - this is intermediate certificate.