JSR-62 (Final)

Uses of Class
java.security.cert.Certificate

Packages that use Certificate
java.net   
java.security   
java.security.cert   
java.util.jar   
 

Uses of Certificate in java.net
 

Methods in java.net that return Certificate
 Certificate[] JarURLConnection.getCertificates()
          Return the Certificate object for this connection if the URL for it points to a JAR file entry, null otherwise.
 

Uses of Certificate in java.security
 

Methods in java.security that return Certificate
 Certificate[] CodeSource.getCertificates()
          Returns the certificates associated with this CodeSource.
abstract  Certificate[] KeyStoreSpi.engineGetCertificateChain(String alias)
          Returns the certificate chain associated with the given alias.
abstract  Certificate KeyStoreSpi.engineGetCertificate(String alias)
          Returns the certificate associated with the given alias.
 Certificate[] KeyStore.getCertificateChain(String alias)
          Returns the certificate chain associated with the given alias.
 Certificate KeyStore.getCertificate(String alias)
          Returns the certificate associated with the given alias.
 

Methods in java.security with parameters of type Certificate
 void Signature.initVerify(Certificate certificate)
          Initializes this object for verification, using the public key from the given certificate.
abstract  void KeyStoreSpi.engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] chain)
          Assigns the given key to the given alias, protecting it with the given password.
abstract  void KeyStoreSpi.engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
          Assigns the given key (that has already been protected) to the given alias.
abstract  void KeyStoreSpi.engineSetCertificateEntry(String alias, Certificate cert)
          Assigns the given certificate to the given alias.
abstract  String KeyStoreSpi.engineGetCertificateAlias(Certificate cert)
          Returns the (alias) name of the first keystore entry whose certificate matches the given certificate.
 void KeyStore.setKeyEntry(String alias, Key key, char[] password, Certificate[] chain)
          Assigns the given key to the given alias, protecting it with the given password.
 void KeyStore.setKeyEntry(String alias, byte[] key, Certificate[] chain)
          Assigns the given key (that has already been protected) to the given alias.
 void KeyStore.setCertificateEntry(String alias, Certificate cert)
          Assigns the given certificate to the given alias.
 String KeyStore.getCertificateAlias(Certificate cert)
          Returns the (alias) name of the first keystore entry whose certificate matches the given certificate.
 

Constructors in java.security with parameters of type Certificate
UnresolvedPermission(String type, String name, String actions, Certificate[] certs)
          Creates a new UnresolvedPermission containing the permission information needed later to actually create a Permission of the specified class, when the permission is resolved.
CodeSource(URL url, Certificate[] certs)
          Constructs a CodeSource and associates it with the specified location and set of certificates.
 

Uses of Certificate in java.security.cert
 

Subclasses of Certificate in java.security.cert
 class X509Certificate
           Abstract class for X.509 certificates.
 

Methods in java.security.cert that return Certificate
abstract  Certificate CertificateFactorySpi.engineGenerateCertificate(InputStream inStream)
          Generates a certificate object and initializes it with the data read from the input stream inStream.
 Certificate CertificateFactory.generateCertificate(InputStream inStream)
          Generates a certificate object and initializes it with the data read from the input stream inStream.
 

Methods in java.security.cert with parameters of type Certificate
abstract  boolean CRL.isRevoked(Certificate cert)
          Checks whether the given certificate is on this CRL.
 

Uses of Certificate in java.util.jar
 

Methods in java.util.jar that return Certificate
 Certificate[] JarEntry.getCertificates()
          Returns the Certificate objects for this entry, or null if none.
 


JSR-62 (Final)

Java and Java 2D are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
Copyright 1993 - 2002 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California 94303, U.S.A. All Rights Reserved.
Use of this specification is subject to this license.