Lines Matching refs:blocksize
429 int blocksize = crypto_tfm_alg_blocksize(&ahash->base);
437 if (keylen > blocksize) {
829 int blocksize = crypto_ahash_blocksize(ahash);
836 *next_buflen = in_len & (blocksize - 1);
844 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
846 *next_buflen = blocksize;
847 to_hash -= blocksize;
1205 int blocksize = crypto_ahash_blocksize(ahash);
1212 *next_buflen = in_len & (blocksize - 1);
1220 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
1222 *next_buflen = blocksize;
1223 to_hash -= blocksize;
1403 int blocksize = crypto_ahash_blocksize(ahash);
1409 *next_buflen = req->nbytes & (blocksize - 1);
1417 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
1419 *next_buflen = blocksize;
1420 to_hash -= blocksize;
1580 unsigned int blocksize;
1592 .blocksize = SHA1_BLOCK_SIZE,
1613 .blocksize = SHA224_BLOCK_SIZE,
1634 .blocksize = SHA256_BLOCK_SIZE,
1655 .blocksize = SHA384_BLOCK_SIZE,
1676 .blocksize = SHA512_BLOCK_SIZE,
1697 .blocksize = MD5_BLOCK_WORDS * 4,
1716 .blocksize = AES_BLOCK_SIZE,
1735 .blocksize = AES_BLOCK_SIZE,
1934 alg->cra_blocksize = template->blocksize;