Symbol: BLOCKCIPHER_BLOCK_SIZE
crypto/adiantum.c
210
const unsigned int bulk_len = req->cryptlen - BLOCKCIPHER_BLOCK_SIZE;
crypto/adiantum.c
353
unsigned int len = req->cryptlen - BLOCKCIPHER_BLOCK_SIZE;
crypto/adiantum.c
373
const unsigned int bulk_len = req->cryptlen - BLOCKCIPHER_BLOCK_SIZE;
crypto/adiantum.c
392
if (req->cryptlen < BLOCKCIPHER_BLOCK_SIZE)
crypto/adiantum.c
425
BUILD_BUG_ON(BLOCKCIPHER_BLOCK_SIZE != 16);
crypto/adiantum.c
565
if (blockcipher_alg->cra_blocksize != BLOCKCIPHER_BLOCK_SIZE)
crypto/adiantum.c
637
inst->alg.base.cra_blocksize = BLOCKCIPHER_BLOCK_SIZE;
crypto/hctr2.c
100
u8 hbar[BLOCKCIPHER_BLOCK_SIZE];
crypto/hctr2.c
159
const unsigned int bulk_len = req->cryptlen - BLOCKCIPHER_BLOCK_SIZE;
crypto/hctr2.c
173
if (req->cryptlen % BLOCKCIPHER_BLOCK_SIZE)
crypto/hctr2.c
191
crypto_xor(rctx->first_block, digest, BLOCKCIPHER_BLOCK_SIZE);
crypto/hctr2.c
195
0, BLOCKCIPHER_BLOCK_SIZE, 1);
crypto/hctr2.c
215
int bulk_len = req->cryptlen - BLOCKCIPHER_BLOCK_SIZE;
crypto/hctr2.c
218
if (req->cryptlen < BLOCKCIPHER_BLOCK_SIZE)
crypto/hctr2.c
223
0, BLOCKCIPHER_BLOCK_SIZE, 0);
crypto/hctr2.c
227
BLOCKCIPHER_BLOCK_SIZE);
crypto/hctr2.c
229
BLOCKCIPHER_BLOCK_SIZE);
crypto/hctr2.c
235
crypto_xor(digest, rctx->first_block, BLOCKCIPHER_BLOCK_SIZE);
crypto/hctr2.c
247
crypto_xor(digest, rctx->first_block, BLOCKCIPHER_BLOCK_SIZE);
crypto/hctr2.c
248
crypto_xor_cpy(rctx->xctr_iv, digest, tctx->L, BLOCKCIPHER_BLOCK_SIZE);
crypto/hctr2.c
375
if (blockcipher_alg->cra_blocksize != BLOCKCIPHER_BLOCK_SIZE)
crypto/hctr2.c
389
inst->alg.base.cra_blocksize = BLOCKCIPHER_BLOCK_SIZE;
crypto/hctr2.c
46
u8 L[BLOCKCIPHER_BLOCK_SIZE];
crypto/hctr2.c
50
u8 first_block[BLOCKCIPHER_BLOCK_SIZE];
crypto/hctr2.c
51
u8 xctr_iv[BLOCKCIPHER_BLOCK_SIZE];