public class CertificateMeta
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
CertificateMeta.Builder |
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
certBase64Md5
First use base64 to encode certificate binary data, and then calculate md5 of base64b string.
|
java.lang.String |
certMd5
Use md5 to calculate certificate's certMd5.
|
byte[] |
data
Certificate binary data.
|
java.util.Date |
endDate
The end date of the validity period.
|
java.lang.String |
signAlgorithm
The sign algorithm name
|
java.lang.String |
signAlgorithmOID
The signature algorithm OID string.
|
java.util.Date |
startDate
The start date of the validity period.
|
| Modifier and Type | Method and Description |
|---|---|
static CertificateMeta.Builder |
newCertificateMeta() |
java.lang.String |
toString() |
public final java.lang.String signAlgorithm
public final java.lang.String signAlgorithmOID
The signature algorithm OID string.
An OID is represented by a set of non-negative whole numbers separated by periods.
For example, the string "1.2.840.10040.4.3" identifies the SHA-1 with DSA signature algorithm defined in RFC 3279: Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and CRL Profile.
public final java.util.Date startDate
public final java.util.Date endDate
public final byte[] data
public final java.lang.String certBase64Md5
public final java.lang.String certMd5
public static CertificateMeta.Builder newCertificateMeta()
public java.lang.String toString()
toString in class java.lang.Object