Lines Matching defs:shash
123 struct shash_desc *shash;
145 shash = *this_cpu_ptr(algo->shashs);
146 shash->tfm = tfm;
148 ret = crypto_shash_digest(shash, text, psize, output);
355 struct shash_desc *shash;
380 shsize = sizeof(*shash) + crypto_shash_descsize(tfm);
387 shash = kzalloc_node(shsize, GFP_KERNEL,
389 if (!shash)
391 *per_cpu_ptr(algo->shashs, cpu) = shash;
420 struct shash_desc *shash;
422 shash = *per_cpu_ptr(algo->shashs, cpu);
423 kfree(shash);