Lines Matching defs:blocksize
661 unsigned int blocksize = crypto_tfm_alg_blocksize(tfm);
742 rem = chunksize % blocksize; /* remainder */
744 /* chunksize not a multiple of blocksize */
792 blocksize);
902 unsigned int blocksize =
908 rc = do_shash("md5", req->result, ctx->opad, blocksize,
912 rc = do_shash("sha1", req->result, ctx->opad, blocksize,
916 rc = do_shash("sha224", req->result, ctx->opad, blocksize,
920 rc = do_shash("sha256", req->result, ctx->opad, blocksize,
924 rc = do_shash("sha384", req->result, ctx->opad, blocksize,
928 rc = do_shash("sha512", req->result, ctx->opad, blocksize,
1002 unsigned int blocksize =
1011 flow_log("%s() blocksize:%u digestsize:%u\n",
1012 __func__, blocksize, ctx->digestsize);
2322 unsigned int blocksize =
2329 __func__, ahash, key, keylen, blocksize, digestsize);
2332 if (keylen > blocksize) {
2400 blocksize - ctx->authkeylen);
2402 memcpy(ctx->opad, ctx->ipad, blocksize);
2404 for (index = 0; index < blocksize; index++) {
2409 flow_dump(" ipad: ", ctx->ipad, blocksize);
2410 flow_dump(" opad: ", ctx->opad, blocksize);
2423 unsigned int blocksize =
2436 memcpy(rctx->hash_carry, ctx->ipad, blocksize);
2437 rctx->hash_carry_len = blocksize;
2438 rctx->total_todo += blocksize;
2473 unsigned int blocksize =
2496 memcpy(rctx->hash_carry, ctx->ipad, blocksize);
2497 rctx->hash_carry_len = blocksize;
2498 rctx->total_todo += blocksize;
4188 unsigned int blocksize = crypto_tfm_alg_blocksize(tfm);
4198 blocksize);