Lines Matching defs:blocksize
429 int blocksize = crypto_tfm_alg_blocksize(&ahash->base);
437 if (keylen > blocksize) {
828 int blocksize = crypto_ahash_blocksize(ahash);
835 *next_buflen = in_len & (blocksize - 1);
843 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
845 *next_buflen = blocksize;
846 to_hash -= blocksize;
1204 int blocksize = crypto_ahash_blocksize(ahash);
1211 *next_buflen = in_len & (blocksize - 1);
1219 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
1221 *next_buflen = blocksize;
1222 to_hash -= blocksize;
1402 int blocksize = crypto_ahash_blocksize(ahash);
1408 *next_buflen = req->nbytes & (blocksize - 1);
1416 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
1418 *next_buflen = blocksize;
1419 to_hash -= blocksize;
1579 unsigned int blocksize;
1591 .blocksize = SHA1_BLOCK_SIZE,
1612 .blocksize = SHA224_BLOCK_SIZE,
1633 .blocksize = SHA256_BLOCK_SIZE,
1654 .blocksize = SHA384_BLOCK_SIZE,
1675 .blocksize = SHA512_BLOCK_SIZE,
1696 .blocksize = MD5_BLOCK_WORDS * 4,
1715 .blocksize = AES_BLOCK_SIZE,
1734 .blocksize = AES_BLOCK_SIZE,
1930 alg->cra_blocksize = template->blocksize;