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

/openjdk7/jdk/src/share/classes/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> <code>Certificate</code>, then
79 if (!(other instanceof Certificate))
83 byte[] otherCert = ((Certificate)other).getEncoded();
/openjdk7/jdk/src/share/classes/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
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificate.java51 * subclassing the Certificate class, even though they contain different
61 public abstract class Certificate implements java.io.Serializable { class in inherits:java.io.Serializable
77 protected Certificate(String type) { method in class:Certificate
93 * <code>instanceof</code> <code>Certificate</code>, then
105 if (!(other instanceof Certificate)) {
110 byte[] otherCert = X509CertImpl.getEncodedInternal((Certificate)other);
204 * Alternate Certificate class for serialization.
215 * Construct the alternate Certificate class with the Certificate
216 * type and Certificate encodin
[all...]

Completed in 31 milliseconds