Home | History | Annotate | Download | only in x509

Lines Matching defs:Certificate

34  * with the X.509 certificate. Its ASN notation is as follows
37 * Certificate and Certificate Revocation List (CRL) Profile.
41 * Certificate ::= SEQUENCE {
48 public final class Certificate {
55 /** the ASN.1 encoded form of Certificate */
58 public Certificate(TBSCertificate tbsCertificate,
68 private Certificate(TBSCertificate tbsCertificate,
91 result.append("X.509 Certificate:\n[\n");
107 encoding = Certificate.ASN1.encode(this);
113 * X.509 Certificate encoder/decoder.
121 return new Certificate(
129 Certificate cert = (Certificate) object;