KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > security > cert > X509CRL

java.security.cert
Class X509CRL

java.lang.Object
  extended by java.security.cert.CRL
      extended by java.security.cert.X509CRL
All Implemented Interfaces:
X509Extension
See Also:
Top Examples, Source Code, CertificateFactory

public boolean equals(Object other)
See Also:
Hashtable, Object.hashCode()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract byte[] getEncoded()
                           throws CRLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract Principal getIssuerDN()
See Also:
getIssuerX500Principal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public X500Principal getIssuerX500Principal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract Date getNextUpdate()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract X509CRLEntry getRevokedCertificate(BigInteger serialNumber)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public X509CRLEntry getRevokedCertificate(X509Certificate certificate)
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract Set<? extends X509CRLEntry> getRevokedCertificates()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract String getSigAlgName()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract String getSigAlgOID()
See Also:
getSigAlgName
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract byte[] getSigAlgParams()
See Also:
getSigAlgName, AlgorithmParameters
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract byte[] getSignature()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract byte[] getTBSCertList()
                               throws CRLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract Date getThisUpdate()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract int getVersion()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int hashCode()
See Also:
Hashtable, Object.equals(java.lang.Object)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void verify(PublicKey key)
                     throws CRLException,
                            NoSuchAlgorithmException,
                            InvalidKeyException,
                            NoSuchProviderException,
                            SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void verify(PublicKey key,
                            String sigProvider)
                     throws CRLException,
                            NoSuchAlgorithmException,
                            InvalidKeyException,
                            NoSuchProviderException,
                            SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected X509CRL()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags