| javax.crypto |
|
| Java Source File Name | Type | Comment |
| BadPaddingException.java | Class | The exception that is thrown when a padding mechanism is expected for the
input data, but the input data does not have the proper padding bytes. |
| Cipher.java | Class | This class provides access to implementations of cryptographic ciphers for
encryption and decryption. |
| CipherInputStream.java | Class | This class wraps an
InputStream and a cipher so that
read() methods return data that are read from the underlying
InputStream and
processed by the cipher.
The cipher must be initialized for the requested operation before being used
by a
CipherInputStream . |
| CipherInputStreamTest.java | Class | |
| CipherOutputStream.java | Class | This class wraps an output stream and a cipher so that
write methods
send the data through the cipher before writing them to the underlying output
stream.
The cipher must be initialized for the requested operation before being used
by a
CipherOutputStream . |
| CipherOutputStreamTest.java | Class | |
| CipherSpi.java | Class | This class defines the Service Provider Interface (SPI) for
cryptographic ciphers.
Implementers of cryptographic ciphers must implement all the abstract methods
for every cipher they implement. |
| CipherSpiTest.java | Class | Tests for CipherSpi class constructors and methods. |
| EncryptedPrivateKeyInfo.java | Class | This class implements the
EncryptedPrivateKeyInfo ASN.1 type as
specified in PKCS
#8 - Private-Key Information Syntax Standard. |
| ExemptionMechanism.java | Class | This class implements the functionality of an exemption mechanism such as
key recovery, key weakening, or key escrow. |
| ExemptionMechanismException.java | Class | This is the base class for
ExemptionMechanismException . |
| ExemptionMechanismSpi.java | Class | The Service Provider Interface (SPI) definition for the
ExemptionMechanism class. |
| ExemptionMechanismSpiTest.java | Class | Tests for ExemptionMechanismSpi class constructors and
methods. |
| IllegalBlockSizeException.java | Class | The exception, that is thrown when the data length provided to a block cipher
does not match the block size of the cipher. |
| KeyAgreement.java | Class | This class provides the functionality for a key exchange protocol. |
| KeyAgreementSpi.java | Class | The Service Provider Interface (SPI) definition for the
KeyAgreement class. |
| KeyAgreementSpiTest.java | Class | Tests for KeyAgreementSpi class constructors and methods. |
| KeyGenerator.java | Class | This class provides the public API for generating symmetric cryptographic
keys. |
| KeyGeneratorSpi.java | Class | The Service Provider Interface (SPI) definition for the
KeyGenerator class. |
| KeyGeneratorSpiTest.java | Class | Tests for KeyGeneratorSpi class constructors and methods. |
| Mac.java | Class | This class provides the public API for Message Authentication Code
(MAC) algorithms. |
| MacSpi.java | Class | The Service-Provider Interface (SPI) definition for the
Mac class. |
| MacSpiTest.java | Class | Tests for MacSpi class constructors and methods. |
| NoSuchPaddingException.java | Class | The exception that is thrown when the requested padding mechanism is not
supported. |
| NullCipher.java | Class | This class provides an identity cipher that does not transform the input data
in any way. |
| SealedObject.java | Class | A
SealedObject is a wrapper around a
serializable object
instance and encrypts it using a cryptographic cipher. |
| SealedObjectTest.java | Class | |
| SecretKey.java | Interface | A cryptographic secret (symmetric) key. |
| SecretKeyFactory.java | Class | The public API for
SecretKeyFactory implementations. |
| SecretKeyFactorySpi.java | Class | The Service Provider Interface (SPI) definition for the
SecretKeyFactory class. |
| SecretKeyFactorySpiTest.java | Class | Tests for SecretKeyFactorySpi class constructors and methods. |
| ShortBufferException.java | Class | The exception that is thrown when the result of an operation is attempted to
store in a user provided buffer that is too small. |