Uses of Class
java.security.KeyStore.Builder
| Package | Description |
|---|---|
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| javax.net.ssl |
This package provides classes and interfaces needed to use the Secure
Sockets Layer (SSL) protocol and the successor Transport Layer
Security (TLS) protocol.
|
-
Uses of KeyStore.Builder in java.security
Methods in java.security that return KeyStore.Builder Modifier and Type Method Description static KeyStore.BuilderKeyStore.Builder. newInstance(String type, Provider provider, File file, KeyStore.ProtectionParameter protectionParameter)Returns a newBuilderthat creates a newKeyStorebased on the provided arguments.static KeyStore.BuilderKeyStore.Builder. newInstance(String type, Provider provider, KeyStore.ProtectionParameter protectionParameter)Returns a newBuilderthat creates a newKeyStorebased on the provided arguments.static KeyStore.BuilderKeyStore.Builder. newInstance(KeyStore keyStore, KeyStore.ProtectionParameter protectionParameter)Returns a newBuilderthat holds the givenKeyStoreand the givenProtectionParameter. -
Uses of KeyStore.Builder in javax.net.ssl
Methods in javax.net.ssl that return types with arguments of type KeyStore.Builder Modifier and Type Method Description List<KeyStore.Builder>KeyStoreBuilderParameters. getParameters()Returns the unmodifiable list ofKeyStore.Builders associated with this parameters instance.Constructors in javax.net.ssl with parameters of type KeyStore.Builder Constructor Description KeyStoreBuilderParameters(KeyStore.Builder builder)Creates a newKeyStoreBuilderParameterswith the specified key store builder.Constructor parameters in javax.net.ssl with type arguments of type KeyStore.Builder Constructor Description KeyStoreBuilderParameters(List<KeyStore.Builder> parameters)Creates a newKeyStoreBuilderParameterswith the specified list ofKeyStore.Builders.