Uses of Interface
org.gudy.bouncycastle.crypto.BlockCipher
-
Packages that use BlockCipher Package Description org.gudy.bouncycastle.crypto org.gudy.bouncycastle.crypto.engines org.gudy.bouncycastle.crypto.modes Modes for symmetric ciphers.org.gudy.bouncycastle.crypto.paddings -
-
Uses of BlockCipher in org.gudy.bouncycastle.crypto
Fields in org.gudy.bouncycastle.crypto declared as BlockCipher Modifier and Type Field Description protected BlockCipher
BufferedBlockCipher. cipher
private BlockCipher
StreamBlockCipher. cipher
Methods in org.gudy.bouncycastle.crypto that return BlockCipher Modifier and Type Method Description BlockCipher
BufferedBlockCipher. getUnderlyingCipher()
return the cipher this object wraps.Constructors in org.gudy.bouncycastle.crypto with parameters of type BlockCipher Constructor Description BufferedBlockCipher(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 BlockCipher Modifier and Type Class Description class
AESFastEngine
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 BlockCipher Modifier and Type Class Description class
CBCBlockCipher
implements Cipher-Block-Chaining (CBC) mode on top of a simple cipher.class
CFBBlockCipher
implements a Cipher-FeedBack (CFB) mode on top of a simple cipher.class
OFBBlockCipher
implements a Output-FeedBack (OFB) mode on top of a simple cipher.class
OpenPGPCFBBlockCipher
Implements OpenPGP's rather strange version of Cipher-FeedBack (CFB) mode on top of a simple cipher.class
PGPCFBBlockCipher
Implements OpenPGP's rather strange version of Cipher-FeedBack (CFB) mode on top of a simple cipher.class
SICBlockCipher
Implements the Segmented Integer Counter (SIC) mode on top of a simple block cipher.Fields in org.gudy.bouncycastle.crypto.modes declared as BlockCipher Modifier and Type Field Description private 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 BlockCipher Modifier and Type Method Description BlockCipher
CBCBlockCipher. getUnderlyingCipher()
return the underlying block cipher that we are wrapping.BlockCipher
CFBBlockCipher. getUnderlyingCipher()
return the underlying block cipher that we are wrapping.BlockCipher
OFBBlockCipher. getUnderlyingCipher()
return the underlying block cipher that we are wrapping.BlockCipher
OpenPGPCFBBlockCipher. getUnderlyingCipher()
return the underlying block cipher that we are wrapping.BlockCipher
PGPCFBBlockCipher. getUnderlyingCipher()
return the underlying block cipher that we are wrapping.BlockCipher
SICBlockCipher. getUnderlyingCipher()
return the underlying block cipher that we are wrapping.Constructors in org.gudy.bouncycastle.crypto.modes with parameters of type BlockCipher Constructor Description CBCBlockCipher(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.SICBlockCipher(BlockCipher c)
Basic constructor. -
Uses of BlockCipher in org.gudy.bouncycastle.crypto.paddings
Constructors in org.gudy.bouncycastle.crypto.paddings with parameters of type BlockCipher Constructor Description PaddedBufferedBlockCipher(BlockCipher cipher)
Create a buffered block cipher PKCS7 paddingPaddedBufferedBlockCipher(BlockCipher cipher, BlockCipherPadding padding)
Create a buffered block cipher with the desired padding.
-