Lines Matching defs:blocksize
426 int blocksize = crypto_tfm_alg_blocksize(&ahash->base);
434 if (keylen > blocksize) {
821 int blocksize = crypto_ahash_blocksize(ahash);
828 *next_buflen = in_len & (blocksize - 1);
836 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
838 *next_buflen = blocksize;
839 to_hash -= blocksize;
1197 int blocksize = crypto_ahash_blocksize(ahash);
1204 *next_buflen = in_len & (blocksize - 1);
1212 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
1214 *next_buflen = blocksize;
1215 to_hash -= blocksize;
1395 int blocksize = crypto_ahash_blocksize(ahash);
1401 *next_buflen = req->nbytes & (blocksize - 1);
1409 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize &&
1411 *next_buflen = blocksize;
1412 to_hash -= blocksize;
1572 unsigned int blocksize;
1584 .blocksize = SHA1_BLOCK_SIZE,
1605 .blocksize = SHA224_BLOCK_SIZE,
1626 .blocksize = SHA256_BLOCK_SIZE,
1647 .blocksize = SHA384_BLOCK_SIZE,
1668 .blocksize = SHA512_BLOCK_SIZE,
1689 .blocksize = MD5_BLOCK_WORDS * 4,
1708 .blocksize = AES_BLOCK_SIZE,
1727 .blocksize = AES_BLOCK_SIZE,
1928 alg->cra_blocksize = template->blocksize;