Lines Matching full:blocksize
193 unsigned int blocksize; in qce_ahash_update() local
195 blocksize = crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm)); in qce_ahash_update()
201 if (total <= blocksize) { in qce_ahash_update()
220 hash_later = total % blocksize; in qce_ahash_update()
238 hash_later = blocksize; in qce_ahash_update()
246 /* here nbytes is multiple of blocksize */ in qce_ahash_update()
337 unsigned int blocksize; in qce_ahash_hmac_setkey() local
343 blocksize = crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm)); in qce_ahash_hmac_setkey()
346 if (keylen <= blocksize) { in qce_ahash_hmac_setkey()
408 unsigned int blocksize; member
419 .blocksize = SHA1_BLOCK_SIZE,
428 .blocksize = SHA256_BLOCK_SIZE,
437 .blocksize = SHA1_BLOCK_SIZE,
446 .blocksize = SHA256_BLOCK_SIZE,
484 base->cra_blocksize = def->blocksize; in qce_ahash_register_one()