| Package | Description | 
|---|---|
| java.security | Provides the classes and interfaces for the security framework. | 
| Modifier and Type | Class and Description | 
|---|---|
| static class  | KeyStore.PrivateKeyEntryA  KeyStoreentry that holds aPrivateKeyand corresponding certificate chain. | 
| static class  | KeyStore.SecretKeyEntryA  KeyStoreentry that holds aSecretKey. | 
| static class  | KeyStore.TrustedCertificateEntryA  KeyStoreentry that holds a trustedCertificate. | 
| Modifier and Type | Method and Description | 
|---|---|
| KeyStore.Entry | KeyStoreSpi. engineGetEntry(String alias,
              KeyStore.ProtectionParameter protParam)Gets a  KeyStore.Entryfor the specified alias
 with the specified protection parameter. | 
| KeyStore.Entry | KeyStore. getEntry(String alias,
        KeyStore.ProtectionParameter protParam)Gets a keystore  Entryfor the specified alias
 with the specified protection parameter. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | KeyStoreSpi. engineSetEntry(String alias,
              KeyStore.Entry entry,
              KeyStore.ProtectionParameter protParam)Saves a  KeyStore.Entryunder the specified alias. | 
| void | KeyStore. setEntry(String alias,
        KeyStore.Entry entry,
        KeyStore.ProtectionParameter protParam)Saves a keystore  Entryunder the specified alias. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | KeyStoreSpi. engineEntryInstanceOf(String alias,
                     Class<? extends KeyStore.Entry> entryClass)Determines if the keystore  Entryfor the specifiedaliasis an instance or subclass of the specifiedentryClass. | 
| boolean | KeyStore. entryInstanceOf(String alias,
               Class<? extends KeyStore.Entry> entryClass)Determines if the keystore  Entryfor the specifiedaliasis an instance or subclass of the specifiedentryClass. | 
 Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
 Copyright © 1993, 2015, Oracle and/or its affiliates.  All rights reserved.