Home | History | Annotate | Download | only in utils

Lines Matching refs:blockLength

17 private int blockLength;
28 if (key.length > blockLength) {
32 ipad = new byte[blockLength];
33 opad = new byte[blockLength];
38 for (; i < blockLength; i++) {
48 * @param blockLength The block length of the message digest.
52 HMAC(MessageDigest digest, int blockLength, byte [] key) {
55 this.blockLength = blockLength;
62 * @param blockLength The block length of the message digest.
66 HMAC(String digestName, int blockLength, byte [] key) {
73 this.blockLength = blockLength;
82 * use {@code HMAC(MessageDigest digest, int blockLength,
84 * @see HMAC#HMAC(MessageDigest digest, int blockLength, byte [] key)
96 * use {@code HMAC(String digestName, int blockLength, byte [] key)}
98 * @see HMAC#HMAC(String digestName, int blockLength, byte [] key)