| Package | Description |
|---|---|
| javax.crypto |
Provides the classes and interfaces for cryptographic operations.
|
| Modifier and Type | Class and Description |
|---|---|
class |
NullCipher
The NullCipher class is a class that provides an "identity cipher" -- one that does not transform the plain text.
|
| Modifier and Type | Method and Description |
|---|---|
static Cipher |
Cipher.getInstance(String
Returns a
Cipher object that implements the specified transformation.
|
static Cipher |
Cipher.getInstance(String
Returns a
Cipher object that implements the specified transformation.
|
static Cipher |
Cipher.getInstance(String
Returns a
Cipher object that implements the specified transformation.
|
| Modifier and Type | Method and Description |
|---|---|
PKCS8EncodedKeySpec |
EncryptedPrivateKeyInfo.getKeySpec(Cipher
Extract the enclosed PKCS8EncodedKeySpec object from the encrypted data and return it.
|
Object |
SealedObject.getObject(Cipher
Retrieves the original (encapsulated) object.
|
| Constructor and Description | |
|---|---|
CipherInputStream(InputStream
Constructs a CipherInputStream from an InputStream and a Cipher.
|
|
CipherOutputStream(OutputStream
Constructs a CipherOutputStream from an OutputStream and a Cipher.
|
|
SealedObject(Serializable
Constructs a SealedObject from any Serializable object.
|