For the latest news and information visit The GNU Crypto project | ||
Frames | No Frames |
Classes derived from gnu.crypto.mode.BaseMode | |
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 | 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. |