Uses of Interface
org.bouncycastle.crypto.internal.paddings.BlockCipherPadding
Packages that use BlockCipherPadding
-
Uses of BlockCipherPadding in org.bouncycastle.crypto.internal.macs
Constructors in org.bouncycastle.crypto.internal.macs with parameters of type BlockCipherPaddingModifierConstructorDescriptionCBCBlockCipherMac(BlockCipher cipher, int macSizeInBits, BlockCipherPadding padding) create a standard MAC based on a block cipher with the size of the MAC been given in bits.CBCBlockCipherMac(BlockCipher cipher, BlockCipherPadding padding) create a standard MAC based on a CBC block cipher.CFBBlockCipherMac(BlockCipher cipher, int cfbBitSize, int macSizeInBits, BlockCipherPadding padding) create a standard MAC based on a block cipher with the size of the MAC been given in bits.CFBBlockCipherMac(BlockCipher cipher, BlockCipherPadding padding) create a standard MAC based on a CFB block cipher. -
Uses of BlockCipherPadding in org.bouncycastle.crypto.internal.paddings
Classes in org.bouncycastle.crypto.internal.paddings that implement BlockCipherPaddingModifier and TypeClassDescriptionclassA padder that adds ISO10126-2 padding to a block.classA padder that adds the padding according to the scheme referenced in ISO 7814-4 - scheme 2 from ISO 9797-1.classA padder that adds PKCS7/PKCS5 padding to a block.classA padder that adds Trailing-Bit-Compliment padding to a block.classA padder that adds X9.23 padding to a block - if a SecureRandom is passed in random padding is assumed, otherwise padding with zeros is used.Constructors in org.bouncycastle.crypto.internal.paddings with parameters of type BlockCipherPaddingModifierConstructorDescriptionPaddedBufferedBlockCipher(BlockCipher cipher, BlockCipherPadding padding) Create a buffered block cipher with the desired padding.PaddedBufferedMultiBlockCipher(MultiBlockCipher cipher, BlockCipherPadding padding) Create a buffered block cipher with the desired padding.