Lines Matching refs:blocksize
426 int blocksize = crypto_tfm_alg_blocksize(&ahash->base); in ahash_setkey() local
434 if (keylen > blocksize) { in ahash_setkey()
821 int blocksize = crypto_ahash_blocksize(ahash); in ahash_update_ctx() local
828 *next_buflen = in_len & (blocksize - 1); in ahash_update_ctx()
836 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize && in ahash_update_ctx()
838 *next_buflen = blocksize; in ahash_update_ctx()
839 to_hash -= blocksize; in ahash_update_ctx()
1197 int blocksize = crypto_ahash_blocksize(ahash); in ahash_update_no_ctx() local
1204 *next_buflen = in_len & (blocksize - 1); in ahash_update_no_ctx()
1212 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize && in ahash_update_no_ctx()
1214 *next_buflen = blocksize; in ahash_update_no_ctx()
1215 to_hash -= blocksize; in ahash_update_no_ctx()
1395 int blocksize = crypto_ahash_blocksize(ahash); in ahash_update_first() local
1401 *next_buflen = req->nbytes & (blocksize - 1); in ahash_update_first()
1409 is_cmac_aes(ctx->adata.algtype)) && to_hash >= blocksize && in ahash_update_first()
1411 *next_buflen = blocksize; in ahash_update_first()
1412 to_hash -= blocksize; in ahash_update_first()
1572 unsigned int blocksize; member
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; in caam_hash_alloc()