Uses of Interface
org.bouncycastle.crypto.internal.paddings.BlockCipherPadding
-
Packages that use BlockCipherPadding Package Description org.bouncycastle.crypto.internal.macs org.bouncycastle.crypto.internal.paddings -
-
Uses of BlockCipherPadding in org.bouncycastle.crypto.internal.macs
Constructors in org.bouncycastle.crypto.internal.macs with parameters of type BlockCipherPadding Constructor Description CBCBlockCipherMac(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 BlockCipherPadding Modifier and Type Class Description class
ISO10126d2Padding
A padder that adds ISO10126-2 padding to a block.class
ISO7816d4Padding
A padder that adds the padding according to the scheme referenced in ISO 7814-4 - scheme 2 from ISO 9797-1.class
PKCS7Padding
A padder that adds PKCS7/PKCS5 padding to a block.class
TBCPadding
A padder that adds Trailing-Bit-Compliment padding to a block.class
X923Padding
A 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 BlockCipherPadding Constructor Description PaddedBufferedBlockCipher(BlockCipher cipher, BlockCipherPadding padding)
Create a buffered block cipher with the desired padding.
-