Example usage for Java javax.net.ssl KeyManagerFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
String | getAlgorithm() Returns the algorithm name of this KeyManagerFactory object. |
String | getDefaultAlgorithm() Obtains the default KeyManagerFactory algorithm name. |
KeyManagerFactory | getInstance(String algorithm) Returns a KeyManagerFactory object that acts as a factory for key managers. |
KeyManagerFactory | getInstance(String algorithm, String provider) Returns a KeyManagerFactory object that acts as a factory for key managers. |
KeyManagerFactory | getInstance(String algorithm, Provider provider) Returns a KeyManagerFactory object that acts as a factory for key managers. |
KeyManager[] | getKeyManagers() Returns one key manager for each type of key material. |
Provider | getProvider() Returns the provider of this KeyManagerFactory object. |
void | init(KeyStore ks, char[] password) Initializes this factory with a source of key material. |
void | init(ManagerFactoryParameters spec) Initializes this factory with a source of provider-specific key material. |