Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.security.cert.CertificateException

Uses of CertificateException in java.security.cert
 

Subclasses of CertificateException in java.security.cert
 class CertificateEncodingException
          Exception for a Certificate Encoding.
 class CertificateExpiredException
          Exception for a Certificate Expiring.
 class CertificateNotYetValidException
          Exception for a Certificate that is not yet valid.
 class CertificateParsingException
          Exception for parsing a DER-encoded Certificate.
 

Methods in java.security.cert that throw CertificateException
abstract  void Certificate.verify(java.security.PublicKey key)
          Verifies that this Certificate was properly signed with the PublicKey that corresponds to its private key.
abstract  void Certificate.verify(java.security.PublicKey key, java.lang.String sigProvider)
          Verifies that this Certificate was properly signed with the PublicKey that corresponds to its private key and uses the signature engine provided by the provider.
abstract  Certificate CertificateFactorySpi.engineGenerateCertificate(java.io.InputStream inStream)
          Generates a Certificate based on the encoded data read from the InputStream.
abstract  java.util.Collection CertificateFactorySpi.engineGenerateCertificates(java.io.InputStream inStream)
          Returns a collection of certificates that were read from the input stream.
 CertPath CertificateFactorySpi.engineGenerateCertPath(java.io.InputStream inStream)
          Generate a CertPath and initialize it with data parsed from the input stream.
 CertPath CertificateFactorySpi.engineGenerateCertPath(java.io.InputStream inStream, java.lang.String encoding)
          Generate a CertPath and initialize it with data parsed from the input stream, using the specified encoding.
 CertPath CertificateFactorySpi.engineGenerateCertPath(java.util.List certificates)
          Generate a CertPath and initialize it with the certificates in the java.util.List argument.
static CertificateFactory CertificateFactory.getInstance(java.lang.String type)
          Gets an instance of the CertificateFactory class representing the specified certificate factory.
static CertificateFactory CertificateFactory.getInstance(java.lang.String type, java.lang.String provider)
          Gets an instance of the CertificateFactory class representing the specified certificate factory from the specified provider.
static CertificateFactory CertificateFactory.getInstance(java.lang.String type, java.security.Provider provider)
          Get a certificate factory for the given certificate type from the given provider.
 Certificate CertificateFactory.generateCertificate(java.io.InputStream inStream)
          Generates a Certificate from the encoded data read from an InputStream.
 java.util.Collection CertificateFactory.generateCertificates(java.io.InputStream inStream)
          Returns a collection of certificates that were read from the input stream.
 CertPath CertificateFactory.generateCertPath(java.io.InputStream inStream)
          Generate a CertPath and initialize it with data parsed from the input stream.
 CertPath CertificateFactory.generateCertPath(java.io.InputStream inStream, java.lang.String encoding)
          Generate a CertPath and initialize it with data parsed from the input stream, using the specified encoding.
 CertPath CertificateFactory.generateCertPath(java.util.List certificates)
          Generate a CertPath and initialize it with the certificates in the java.util.List argument.