Package | Description |
---|---|
gnu.crypto.mode |
Modifier and Type | Class and Description |
---|---|
class |
BaseMode
A basic abstract class to facilitate implementing block cipher modes of
operations.
|
class |
CBC
The Cipher Block Chaining mode.
|
class |
CFB
The cipher feedback mode.
|
class |
CTR
The implementation of the Counter Mode.
|
class |
ECB
The implementation of the Electronic Codebook mode.
|
class |
GCM
RFC 5084
Using AES-CCM and AES-GCM Authenticated Encryption in the CMS
NIST Special Publication 800-38D
Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC
|
class |
ICM
An implementation of David McGrew Integer Counter Mode (ICM) as an
IMode . |
class |
OFB
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. |
Modifier and Type | Method and Description |
---|---|
static IMode |
ModeFactory.getInstance(java.lang.String mode,
IBlockCipher cipher,
int cipherBlockSize) |
static IMode |
ModeFactory.getInstance(java.lang.String mode,
java.lang.String cipher,
int cipherBlockSize)
Returns an instance of a block cipher mode of operations given its name
and characteristics of the underlying block cipher.
|
Copyright © 2025. All rights reserved.