Uses of Interface
org.bouncycastle.crypto.paddings.BlockCipherPadding
| Package | Description |
|---|---|
| org.bouncycastle.crypto.macs | |
| org.bouncycastle.crypto.paddings |
-
Uses of BlockCipherPadding in org.bouncycastle.crypto.macs
Constructors in org.bouncycastle.crypto.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. -
Uses of BlockCipherPadding in org.bouncycastle.crypto.paddings
Classes in org.bouncycastle.crypto.paddings that implement BlockCipherPadding Modifier and Type Class Description classISO10126d2PaddingA padder that adds ISO10126-2 padding to a block.classISO7816d4PaddingA padder that adds the padding according to the scheme referenced in ISO 7814-4 - scheme 2 from ISO 9797-1.classPKCS7PaddingA padder that adds PKCS7/PKCS5 padding to a block.classTBCPaddingA padder that adds Trailing-Bit-Compliment padding to a block.classX923PaddingA 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.classZeroBytePaddingA padder that adds NULL byte padding to a block.Constructors in org.bouncycastle.crypto.paddings with parameters of type BlockCipherPadding Constructor Description PaddedBufferedBlockCipher(BlockCipher cipher, BlockCipherPadding padding)Create a buffered block cipher with the desired padding.