| java.lang.Object java.security.KeyStoreSpi sun.security.provider.JavaKeyStore
JavaKeyStore | final public class JavaKeyStore extends KeyStoreSpi (Code) | | This class provides the keystore implementation referred to as "JKS".
author: Jan Luehe author: David Brownell version: 1.50, 10/10/06 See Also: KeyProtector See Also: java.security.KeyStoreSpi See Also: KeyTool since: JDK1.2 |
Inner Class :class KeyEntry | |
Inner Class :class TrustedCertEntry | |
Method Summary | |
public Enumeration | engineAliases() Lists all the alias names of this keystore. | public boolean | engineContainsAlias(String alias) Checks if the given alias exists in this keystore. | public void | engineDeleteEntry(String alias) Deletes the entry identified by the given alias from this keystore. | public Certificate | engineGetCertificate(String alias) Returns the certificate associated with the given alias.
If the given alias name identifies a
trusted certificate entry, the certificate associated with that
entry is returned. | public String | engineGetCertificateAlias(Certificate cert) Returns the (alias) name of the first keystore entry whose certificate
matches the given certificate.
This method attempts to match the given certificate with each
keystore entry. | public Certificate[] | engineGetCertificateChain(String alias) Returns the certificate chain associated with the given alias. | public Date | engineGetCreationDate(String alias) Returns the creation date of the entry identified by the given alias. | public Key | engineGetKey(String alias, char[] password) Returns the key associated with the given alias, using the given
password to recover it. | public boolean | engineIsCertificateEntry(String alias) Returns true if the entry identified by the given alias is a
trusted certificate entry, and false otherwise. | public boolean | engineIsKeyEntry(String alias) Returns true if the entry identified by the given alias is a
key entry, and false otherwise. | public void | engineLoad(InputStream stream, char[] password) Loads the keystore from the given input stream.
If a password is given, it is used to check the integrity of the
keystore data. | public void | engineSetCertificateEntry(String alias, Certificate cert) Assigns the given certificate to the given alias. | public void | engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] chain) Assigns the given key to the given alias, protecting it with the given
password. | public void | engineSetKeyEntry(String alias, byte[] key, Certificate[] chain) Assigns the given key (that has already been protected) to the given
alias.
If the protected key is of type
java.security.PrivateKey , it must be accompanied by a
certificate chain certifying the corresponding public key. | public int | engineSize() Retrieves the number of entries in this keystore. | public void | engineStore(OutputStream stream, char[] password) Stores this keystore to the given output stream, and protects its
integrity with the given password. |
MAGIC | final public static int MAGIC(Code) | | |
VERSION_1 | final public static int VERSION_1(Code) | | |
VERSION_2 | final public static int VERSION_2(Code) | | |
engineAliases | public Enumeration engineAliases()(Code) | | Lists all the alias names of this keystore.
enumeration of the alias names |
engineContainsAlias | public boolean engineContainsAlias(String alias)(Code) | | Checks if the given alias exists in this keystore.
Parameters: alias - the alias name true if the alias exists, false otherwise |
engineDeleteEntry | public void engineDeleteEntry(String alias) throws KeyStoreException(Code) | | Deletes the entry identified by the given alias from this keystore.
Parameters: alias - the alias name exception: KeyStoreException - if the entry cannot be removed. |
engineGetCertificate | public Certificate engineGetCertificate(String alias)(Code) | | Returns the certificate associated with the given alias.
If the given alias name identifies a
trusted certificate entry, the certificate associated with that
entry is returned. If the given alias name identifies a
key entry, the first element of the certificate chain of that
entry is returned, or null if that entry does not have a certificate
chain.
Parameters: alias - the alias name the certificate, or null if the given alias does not exist ordoes not contain a certificate. |
engineGetCertificateAlias | public String engineGetCertificateAlias(Certificate cert)(Code) | | Returns the (alias) name of the first keystore entry whose certificate
matches the given certificate.
This method attempts to match the given certificate with each
keystore entry. If the entry being considered
is a trusted certificate entry, the given certificate is
compared to that entry's certificate. If the entry being considered is
a key entry, the given certificate is compared to the first
element of that entry's certificate chain (if a chain exists).
Parameters: cert - the certificate to match with. the (alias) name of the first entry with matching certificate,or null if no such entry exists in this keystore. |
engineGetCertificateChain | public Certificate[] engineGetCertificateChain(String alias)(Code) | | Returns the certificate chain associated with the given alias.
Parameters: alias - the alias name the certificate chain (ordered with the user's certificate firstand the root certificate authority last), or null if the given aliasdoes not exist or does not contain a certificate chain (i.e., the given alias identifies either a trusted certificate entry or akey entry without a certificate chain). |
engineGetCreationDate | public Date engineGetCreationDate(String alias)(Code) | | Returns the creation date of the entry identified by the given alias.
Parameters: alias - the alias name the creation date of this entry, or null if the given alias doesnot exist |
engineGetKey | public Key engineGetKey(String alias, char[] password) throws NoSuchAlgorithmException, UnrecoverableKeyException(Code) | | Returns the key associated with the given alias, using the given
password to recover it.
Parameters: alias - the alias name Parameters: password - the password for recovering the key the requested key, or null if the given alias does not existor does not identify a key entry. exception: NoSuchAlgorithmException - if the algorithm for recovering thekey cannot be found exception: UnrecoverableKeyException - if the key cannot be recovered(e.g., the given password is wrong). |
engineIsCertificateEntry | public boolean engineIsCertificateEntry(String alias)(Code) | | Returns true if the entry identified by the given alias is a
trusted certificate entry, and false otherwise.
true if the entry identified by the given alias is atrusted certificate entry, false otherwise. |
engineIsKeyEntry | public boolean engineIsKeyEntry(String alias)(Code) | | Returns true if the entry identified by the given alias is a
key entry, and false otherwise.
true if the entry identified by the given alias is akey entry, false otherwise. |
engineLoad | public void engineLoad(InputStream stream, char[] password) throws IOException, NoSuchAlgorithmException, CertificateException(Code) | | Loads the keystore from the given input stream.
If a password is given, it is used to check the integrity of the
keystore data. Otherwise, the integrity of the keystore is not checked.
Parameters: stream - the input stream from which the keystore is loaded Parameters: password - the (optional) password used to check the integrity ofthe keystore. exception: IOException - if there is an I/O or format problem with thekeystore data exception: NoSuchAlgorithmException - if the algorithm used to checkthe integrity of the keystore cannot be found exception: CertificateException - if any of the certificates in thekeystore could not be loaded |
engineSetCertificateEntry | public void engineSetCertificateEntry(String alias, Certificate cert) throws KeyStoreException(Code) | | Assigns the given certificate to the given alias.
If the given alias already exists in this keystore and identifies a
trusted certificate entry, the certificate associated with it is
overridden by the given certificate.
Parameters: alias - the alias name Parameters: cert - the certificate exception: KeyStoreException - if the given alias already exists and doesnot identify a trusted certificate entry, or this operationfails for some other reason. |
engineSetKeyEntry | public void engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] chain) throws KeyStoreException(Code) | | Assigns the given key to the given alias, protecting it with the given
password.
If the given key is of type java.security.PrivateKey ,
it must be accompanied by a certificate chain certifying the
corresponding public key.
If the given alias already exists, the keystore information
associated with it is overridden by the given key (and possibly
certificate chain).
Parameters: alias - the alias name Parameters: key - the key to be associated with the alias Parameters: password - the password to protect the key Parameters: chain - the certificate chain for the corresponding publickey (only required if the given key is of typejava.security.PrivateKey ). exception: KeyStoreException - if the given key cannot be protected, orthis operation fails for some other reason |
engineSetKeyEntry | public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain) throws KeyStoreException(Code) | | Assigns the given key (that has already been protected) to the given
alias.
If the protected key is of type
java.security.PrivateKey , it must be accompanied by a
certificate chain certifying the corresponding public key. If the
underlying keystore implementation is of type jks ,
key must be encoded as an
EncryptedPrivateKeyInfo as defined in the PKCS #8 standard.
If the given alias already exists, the keystore information
associated with it is overridden by the given key (and possibly
certificate chain).
Parameters: alias - the alias name Parameters: key - the key (in protected format) to be associated with the alias Parameters: chain - the certificate chain for the corresponding publickey (only useful if the protected key is of typejava.security.PrivateKey ). exception: KeyStoreException - if this operation fails. |
engineSize | public int engineSize()(Code) | | Retrieves the number of entries in this keystore.
the number of entries in this keystore |
engineStore | public void engineStore(OutputStream stream, char[] password) throws IOException, NoSuchAlgorithmException, CertificateException(Code) | | Stores this keystore to the given output stream, and protects its
integrity with the given password.
Parameters: stream - the output stream to which this keystore is written. Parameters: password - the password to generate the keystore integrity check exception: IOException - if there was an I/O problem with data exception: NoSuchAlgorithmException - if the appropriate data integrityalgorithm could not be found exception: CertificateException - if any of the certificates included inthe keystore data could not be stored |
Methods inherited from java.security.KeyStoreSpi | abstract public Enumeration engineAliases()(Code)(Java Doc) abstract public boolean engineContainsAlias(String alias)(Code)(Java Doc) abstract public void engineDeleteEntry(String alias) throws KeyStoreException(Code)(Java Doc) abstract public Certificate engineGetCertificate(String alias)(Code)(Java Doc) abstract public String engineGetCertificateAlias(Certificate cert)(Code)(Java Doc) abstract public Certificate[] engineGetCertificateChain(String alias)(Code)(Java Doc) abstract public Date engineGetCreationDate(String alias)(Code)(Java Doc) abstract public Key engineGetKey(String alias, char[] password) throws NoSuchAlgorithmException, UnrecoverableKeyException(Code)(Java Doc) abstract public boolean engineIsCertificateEntry(String alias)(Code)(Java Doc) abstract public boolean engineIsKeyEntry(String alias)(Code)(Java Doc) abstract public void engineLoad(InputStream stream, char[] password) throws IOException, NoSuchAlgorithmException, CertificateException(Code)(Java Doc) abstract public void engineSetCertificateEntry(String alias, Certificate cert) throws KeyStoreException(Code)(Java Doc) abstract public void engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] chain) throws KeyStoreException(Code)(Java Doc) abstract public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain) throws KeyStoreException(Code)(Java Doc) abstract public int engineSize()(Code)(Java Doc) abstract public void engineStore(OutputStream stream, char[] password) throws IOException, NoSuchAlgorithmException, CertificateException(Code)(Java Doc)
|
|
|