Searched defs:macSizeInBits (Results 1 - 1 of 1) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DCBCBlockCipherMac.java62 * @param macSizeInBits the size of the MAC in bits, must be a multiple of 8.
66 int macSizeInBits)
68 this(cipher, macSizeInBits, null);
82 * @param macSizeInBits the size of the MAC in bits, must be a multiple of 8.
87 int macSizeInBits,
90 if ((macSizeInBits % 8) != 0)
97 this.macSize = macSizeInBits / 8;
64 CBCBlockCipherMac( BlockCipher cipher, int macSizeInBits) argument
85 CBCBlockCipherMac( BlockCipher cipher, int macSizeInBits, BlockCipherPadding padding) argument

Completed in 97 milliseconds