- Key - Interface in java.security
-
The Key interface is the top-level interface for all keys.
- KeyException - Exception in java.security
-
This is the basic key exception.
- KeyException() - Constructor for exception java.security.KeyException
-
Constructs a KeyException with no detail message.
- KeyException(String) - Constructor for exception java.security.KeyException
-
Constructs a KeyException with the specified detail message.
- KeyException(String, Throwable) - Constructor for exception java.security.KeyException
-
Creates a KeyException
with the specified detail message and cause.
- KeyException(Throwable) - Constructor for exception java.security.KeyException
-
Creates a KeyException
with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- KeyFactory - Class in java.security
-
Key factories are used to convert keys (opaque cryptographic keys of type Key
) into key
specifications (transparent representations of the underlying key material), and vice versa.
- KeyFactory() - Constructor for class java.security.KeyFactory
-
- KeyManagementException - Exception in java.security
-
This is the general key management exception for all operations dealing with key management.
- KeyManagementException() - Constructor for exception java.security.KeyManagementException
-
Constructs a KeyManagementException with no detail message.
- KeyManagementException(String) - Constructor for exception java.security.KeyManagementException
-
Constructs a KeyManagementException with the specified detail message.
- KeyManagementException(String, Throwable) - Constructor for exception java.security.KeyManagementException
-
Creates a KeyManagementException
with the specified detail message and cause.
- KeyManagementException(Throwable) - Constructor for exception java.security.KeyManagementException
-
Creates a KeyManagementException
with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- KeySpec - Interface in java.security.spec
-
A (transparent) specification of the key material that constitutes a cryptographic key.
- KeyStore - Class in java.security
-
This class represents a storage facility for cryptographic keys and certificates.
- KeyStore() - Constructor for class java.security.KeyStore
-
- KeyStoreException - Exception in java.security
-
This is the generic KeyStore exception.
- KeyStoreException() - Constructor for exception java.security.KeyStoreException
-
Constructs a KeyStoreException with no detail message.
- KeyStoreException(String) - Constructor for exception java.security.KeyStoreException
-
Constructs a KeyStoreException with the specified detail message.
- KeyStoreException(String, Throwable) - Constructor for exception java.security.KeyStoreException
-
Creates a KeyStoreException
with the specified detail message and cause.
- KeyStoreException(Throwable) - Constructor for exception java.security.KeyStoreException
-
Creates a KeyStoreException
with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- KeyStoreSpi - Class in java.security
-
This class defines the Service Provider Interface (SPI) for the KeyStore
class.
- KeyStoreSpi() - Constructor for class java.security.KeyStoreSpi
-