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

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CertInfo.java39 * The X509CertInfo class represents X.509 certificate information.
63 public class X509CertInfo implements CertAttrSet<String> { class in inherits:CertAttrSet
129 * Construct an uninitialized X509CertInfo on which <a href="#decode">
132 public X509CertInfo() { } method in class:X509CertInfo
146 public X509CertInfo(byte[] cert) throws CertificateParsingException { method in class:X509CertInfo
167 public X509CertInfo(DerValue derVal) throws CertificateParsingException { method in class:X509CertInfo
243 * Compares two X509CertInfo objects. This is false if the
251 if (other instanceof X509CertInfo) {
252 return equals((X509CertInfo) other);
265 public boolean equals(X509CertInfo othe
[all...]

Completed in 31 milliseconds