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

/libcore/ojluni/src/main/java/java/security/
H A DCertificate.java47 * implementation of PGP certificates can both utilize the Certificate
53 * semantics of its own. In particular, a Certificate object does not
60 * This Certificate interface is entirely deprecated and
63 * @see java.security.cert.Certificate
66 public interface Certificate { interface
72 * certificates, the guarantor will typically be a Certificate Authority
/libcore/ojluni/src/main/java/javax/security/cert/
H A DCertificate.java48 * subclassing the Certificate class, even though they contain different
63 public abstract class Certificate { class
68 * {@code instanceof} {@code Certificate}, then
79 if (!(other instanceof Certificate))
83 byte[] otherCert = ((Certificate)other).getEncoded();
/libcore/ojluni/src/main/java/java/security/cert/
H A DCertificate.java52 * subclassing the Certificate class, even though they contain different
62 public abstract class Certificate implements java.io.Serializable { class in inherits:java.io.Serializable
81 protected Certificate(String type) { method in class:Certificate
97 * {@code instanceof} {@code Certificate}, then
109 if (!(other instanceof Certificate)) {
114 byte[] otherCert = X509CertImpl.getEncodedInternal((Certificate)other);
237 * Alternate Certificate class for serialization.
248 * Construct the alternate Certificate class with the Certificate
249 * type and Certificate encodin
[all...]

Completed in 212 milliseconds