Methods Summary |
---|
public boolean | equals(java.lang.Object other)Returns whether the specified object equals to this instance.
if (other == this) {
return true;
}
if (!(other instanceof X509CRLEntry)) {
return false;
}
X509CRLEntry obj = (X509CRLEntry) other;
try {
return Arrays.equals(getEncoded(), obj.getEncoded());
} catch (CRLException e) {
return false;
}
|
public javax.security.auth.x500.X500Principal | getCertificateIssuer()Returns the issuer of the revoked certificate.
return null;
|
public abstract byte[] | getEncoded()Returns this entry in ASN.1 DER encoded form.
|
public abstract java.util.Date | getRevocationDate()Returns the date when the certificate is revoked.
|
public abstract java.math.BigInteger | getSerialNumber()Returns the serial number of the revoked certificate.
|
public abstract boolean | hasExtensions()Returns whether this CRL entry has extensions.
|
public int | hashCode()Returns the hashcode of this instance.
int res = 0;
try {
byte[] array = getEncoded();
for (int i=0; i<array.length; i++) {
res += array[i] & 0xFF;
}
} catch (CRLException e) {
}
return res;
|
public abstract java.lang.String | toString()Returns a string representation of this instance.
|