- init(KeyStore, char[]) - Method in class javax.net.ssl.KeyManagerFactory
-
Initializes this factory with a source of key material.
- init(KeyManager[], TrustManager[], SecureRandom) - Method in class javax.net.ssl.SSLContext
-
Initializes this context.
- init(KeyStore) - Method in class javax.net.ssl.TrustManagerFactory
-
Initializes this factory with a source of certificate
authorities and related trust material.
- InvalidAlgorithmParameterException - Exception in java.security
-
This is the exception for invalid or inappropriate algorithm parameters.
- InvalidAlgorithmParameterException() - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Constructs an InvalidAlgorithmParameterException with no detail
message.
- InvalidAlgorithmParameterException(String) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Constructs an InvalidAlgorithmParameterException with the specified
detail message.
- InvalidAlgorithmParameterException(String, Throwable) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Creates a InvalidAlgorithmParameterException
with the
specified detail message and cause.
- InvalidAlgorithmParameterException(Throwable) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Creates a InvalidAlgorithmParameterException
with the
specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- isCertificateEntry(String) - Method in class java.security.KeyStore
-
Returns true if the entry identified by the given alias
was created by a call to setCertificateEntry
,
or created by a call to setEntry
with a
TrustedCertificateEntry
.
- isKeyEntry(String) - Method in class java.security.KeyStore
-
Returns true if the entry identified by the given alias
was created by a call to setKeyEntry
,
or created by a call to setEntry
with a
PrivateKeyEntry
or a SecretKeyEntry
.