Uses of Interface
org.gudy.bouncycastle.crypto.BlockCipher
Packages that use BlockCipher
Package
Description
Modes for symmetric ciphers.
-
Uses of BlockCipher in org.gudy.bouncycastle.crypto
Fields in org.gudy.bouncycastle.crypto declared as BlockCipherModifier and TypeFieldDescriptionprotected BlockCipher
BufferedBlockCipher.cipher
private BlockCipher
StreamBlockCipher.cipher
Methods in org.gudy.bouncycastle.crypto that return BlockCipherModifier and TypeMethodDescriptionBufferedBlockCipher.getUnderlyingCipher()
return the cipher this object wraps.Constructors in org.gudy.bouncycastle.crypto with parameters of type BlockCipherModifierConstructorDescriptionBufferedBlockCipher
(BlockCipher cipher) Create a buffered block cipher without padding.StreamBlockCipher
(BlockCipher cipher) basic constructor. -
Uses of BlockCipher in org.gudy.bouncycastle.crypto.engines
Classes in org.gudy.bouncycastle.crypto.engines that implement BlockCipherModifier and TypeClassDescriptionclass
an implementation of the AES (Rijndael), from FIPS-197. -
Uses of BlockCipher in org.gudy.bouncycastle.crypto.modes
Classes in org.gudy.bouncycastle.crypto.modes that implement BlockCipherModifier and TypeClassDescriptionclass
implements Cipher-Block-Chaining (CBC) mode on top of a simple cipher.class
implements a Cipher-FeedBack (CFB) mode on top of a simple cipher.class
implements a Output-FeedBack (OFB) mode on top of a simple cipher.class
Implements OpenPGP's rather strange version of Cipher-FeedBack (CFB) mode on top of a simple cipher.class
Implements OpenPGP's rather strange version of Cipher-FeedBack (CFB) mode on top of a simple cipher.class
Implements the Segmented Integer Counter (SIC) mode on top of a simple block cipher.Fields in org.gudy.bouncycastle.crypto.modes declared as BlockCipherModifier and TypeFieldDescriptionprivate BlockCipher
CBCBlockCipher.cipher
private BlockCipher
CFBBlockCipher.cipher
private BlockCipher
OFBBlockCipher.cipher
private BlockCipher
OpenPGPCFBBlockCipher.cipher
private BlockCipher
PGPCFBBlockCipher.cipher
private BlockCipher
SICBlockCipher.cipher
Methods in org.gudy.bouncycastle.crypto.modes that return BlockCipherModifier and TypeMethodDescriptionCBCBlockCipher.getUnderlyingCipher()
return the underlying block cipher that we are wrapping.CFBBlockCipher.getUnderlyingCipher()
return the underlying block cipher that we are wrapping.OFBBlockCipher.getUnderlyingCipher()
return the underlying block cipher that we are wrapping.OpenPGPCFBBlockCipher.getUnderlyingCipher()
return the underlying block cipher that we are wrapping.PGPCFBBlockCipher.getUnderlyingCipher()
return the underlying block cipher that we are wrapping.SICBlockCipher.getUnderlyingCipher()
return the underlying block cipher that we are wrapping.Constructors in org.gudy.bouncycastle.crypto.modes with parameters of type BlockCipherModifierConstructorDescriptionCBCBlockCipher
(BlockCipher cipher) Basic constructor.CFBBlockCipher
(BlockCipher cipher, int bitBlockSize) Basic constructor.CTSBlockCipher
(BlockCipher cipher) Create a buffered block cipher that uses Cipher Text StealingOFBBlockCipher
(BlockCipher cipher, int blockSize) Basic constructor.OpenPGPCFBBlockCipher
(BlockCipher cipher) Basic constructor.PaddedBlockCipher
(BlockCipher cipher) Deprecated.Create a buffered block cipher with, or without, padding.PGPCFBBlockCipher
(BlockCipher cipher, boolean inlineIv) Basic constructor.Basic constructor. -
Uses of BlockCipher in org.gudy.bouncycastle.crypto.paddings
Constructors in org.gudy.bouncycastle.crypto.paddings with parameters of type BlockCipherModifierConstructorDescriptionPaddedBufferedBlockCipher
(BlockCipher cipher) Create a buffered block cipher PKCS7 paddingPaddedBufferedBlockCipher
(BlockCipher cipher, BlockCipherPadding padding) Create a buffered block cipher with the desired padding.