Uses of Class gnu.crypto.mode.BaseMode

Uses in package gnu.crypto.mode

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:

  • ECB Encryption: Cj = CIPHK(Pj) for j = 1...n
  • ECB Decryption: Pj = CIPH-1K(Cj) for j = 1...n

In ECB encryption, the forward cipher function is applied directly, and independently, to each block of the plaintext.

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.

Copyright © 2001, 2002, 2003 Free Software Foundation, Inc. All Rights Reserved.