|
For the latest news and information visit The GNU Crypto project | |
| Frames | No Frames |
Constructors with parameter type gnu.crypto.mode.IMode | |
Methods with parameter type gnu.crypto.mode.IMode | |
| Stage | |
Fields of type gnu.crypto.mode.IMode | |
| IMode | Our mode instance. |
Classes implementing gnu.crypto.mode.IMode | |
| class | A basic abstract class to facilitate implementing block cipher modes of
operations.
|
| class | The Cipher Block Chaining mode. |
| class | The cipher feedback mode. |
| class | The implementation of the Counter Mode.
The algorithm steps are formally described as follows:
CTR Encryption: O[j] = E(K)(T[j]); for j = 1, 2...n;
C[j] = P[j] ^ O[j]; for j = 1, 2...n.
|
| class | A conventional two-pass authenticated-encrypted mode, EAX. |
| class | The implementation of the Electronic Codebook mode.
The Electronic Codebook (ECB) mode is a confidentiality mode that is
defined as follows:
|
| class | An implementation of David McGrew Integer Counter Mode (ICM) as an
IMode.
ICM is a way to define a pseudorandom keystream generator using a block
cipher. |
| class | The Output Feedback (OFB) mode is a confidentiality mode that requires a
unique IV for every message that is ever encrypted under the
given key. |
Methods with return type gnu.crypto.mode.IMode | |
| IMode | ModeFactory.getInstance(String mode, String cipher, int cipherBlockSize) Returns an instance of a block cipher mode of operations given its name
and characteristics of the underlying block cipher.
|
| IMode | |