CryptoManagerKmipCertificateInfo

CryptoManagerKmipCertificateInfo
CryptoManagerKmipCertificateInfo

Basic information of a certificate.

AllOf
This class requires all of the following:
JSON Example
{
    "_typeName": "string",
    "subject": "string",
    "issuer": "string",
    "serialNumber": "string",
    "notBefore": "string",
    "notAfter": "string",
    "fingerprint": "string",
    "checkTime": "string",
    "secondsSinceValid": 0,
    "secondsBeforeExpire": 0
}
string
subject
Required

Subject identifies whom the certificate is issued to.

string
issuer
Required

Issuer identifies the party that issued this certificate.

string
serialNumber
Required

The unique serial number of the certificate given by issuer.

string As date-time As date-time
notBefore
Required

The beginning time of the period of validity.

string As date-time As date-time
notAfter
Required

The ending time of the period of validity.

string
fingerprint
Required

The SSL SHA1 fingerprint of the certificate.

string As date-time As date-time
checkTime
Required

The timestamp when the state of the certificate is checked.

integer As int32 As int32
secondsSinceValid
Optional

Total seconds since this certificate has entered valid state.

It is the time difference between "now" and "notBefore". If it is negative value, that means the certificate will become valid in a future time.

integer As int32 As int32
secondsBeforeExpire
Optional

Total seconds before this certificate expires.

It is the time difference between "notAfter" and "now". If it is negative value, that means the certificate has already expired.