Uses of Interface
java.security.KeyStore.Entry
| Package | Description |
|---|---|
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
-
Uses of KeyStore.Entry in java.security
Classes in java.security that implement KeyStore.Entry Modifier and Type Class Description static classKeyStore.PrivateKeyEntryPrivateKeyEntryrepresents aKeyStoreentry that holds a private key.static classKeyStore.SecretKeyEntrySecretKeyEntryrepresents aKeyStoreentry that holds a secret key.static classKeyStore.TrustedCertificateEntryTrustedCertificateEntryrepresents aKeyStoreentry that holds a trusted certificate.Methods in java.security that return KeyStore.Entry Modifier and Type Method Description KeyStore.EntryKeyStoreSpi. engineGetEntry(String alias, KeyStore.ProtectionParameter protParam)Returns theEntrywith the given alias, using the specifiedProtectionParameter.KeyStore.EntryKeyStore. getEntry(String alias, KeyStore.ProtectionParameter param)Returns theEntrywith the given alias, using the specifiedProtectionParameter.Methods in java.security with parameters of type KeyStore.Entry Modifier and Type Method Description voidKeyStoreSpi. engineSetEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam)Stores the givenEntryin thisKeyStoreSpiand associates the entry with the givenalias.voidKeyStore. setEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter param)Stores the givenEntryin thisKeyStoreand associates the entry with the givenalias.Method parameters in java.security with type arguments of type KeyStore.Entry Modifier and Type Method Description booleanKeyStoreSpi. engineEntryInstanceOf(String alias, Class<? extends KeyStore.Entry> entryClass)Indicates whether the entry for the given alias is assignable to the providedClass.booleanKeyStore. entryInstanceOf(String alias, Class<? extends KeyStore.Entry> entryClass)Indicates whether the entry for the given alias is assignable to the providedClass.