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 BlockCipherBufferedBlockCipher.cipherprivate BlockCipherStreamBlockCipher.cipherMethods 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 TypeClassDescriptionclassan 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 TypeClassDescriptionclassimplements Cipher-Block-Chaining (CBC) mode on top of a simple cipher.classimplements a Cipher-FeedBack (CFB) mode on top of a simple cipher.classimplements a Output-FeedBack (OFB) mode on top of a simple cipher.classImplements OpenPGP's rather strange version of Cipher-FeedBack (CFB) mode on top of a simple cipher.classImplements OpenPGP's rather strange version of Cipher-FeedBack (CFB) mode on top of a simple cipher.classImplements 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 BlockCipherCBCBlockCipher.cipherprivate BlockCipherCFBBlockCipher.cipherprivate BlockCipherOFBBlockCipher.cipherprivate BlockCipherOpenPGPCFBBlockCipher.cipherprivate BlockCipherPGPCFBBlockCipher.cipherprivate BlockCipherSICBlockCipher.cipherMethods 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.