Searched defs:Certificate (Results 1 - 4 of 4) sorted by relevance

/dalvik/libcore/security/src/main/java/java/security/
H A DCertificate.java34 * {@code Certificate} represents an identity certificate, such as X.509 or PGP.
35 * Note: A {@code Certificate} instances does not make any statement about the
40 * @see java.security.cert.Certificate
44 public interface Certificate { interface
114 * @see Certificate#getPrincipal()
121 * this {@code Certificate}.
/dalvik/libcore/security/src/main/java/javax/security/cert/
H A DCertificate.java42 public abstract class Certificate { class
45 * Creates a new {@code Certificate}.
48 public Certificate() {} method in class:Certificate
51 * Compares the argument to this Certificate. If both have the same bytes
55 * the {@code Certificate} to compare with this object
57 * {@code Certificate}, <code>false</code> otherwise
65 if (!(obj instanceof Certificate)) {
68 Certificate object = (Certificate) obj;
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DCertificate.java37 * Certificate and Certificate Revocation List (CRL) Profile.
41 * Certificate ::= SEQUENCE {
48 public class Certificate { class
56 // the ASN.1 encoded form of Certificate
65 public Certificate(TBSCertificate tbsCertificate, method in class:Certificate
82 private Certificate(TBSCertificate tbsCertificate, method in class:Certificate
117 buffer.append("X.509 Certificate:\n[\n"); //$NON-NLS-1$
134 encoding = Certificate.ASN1.encode(this);
140 * X.509 Certificate encode
[all...]
/dalvik/libcore/security/src/main/java/java/security/cert/
H A DCertificate.java41 public abstract class Certificate implements Serializable { class in inherits:Serializable
49 * Creates a new {@code Certificate} with the specified type.
55 protected Certificate(String type) { method in class:Certificate
87 if (other instanceof Certificate) {
91 ((Certificate)other).getEncoded());
220 * deserialization of {@code Certificate} objects.
255 * Deserializes a {@code Certificate} from a serialized {@code
258 * @return the deserialized {@code Certificate}.

Completed in 120 milliseconds