Lines Matching refs:hash
40 #include <crypto/hash.h>
142 * Insert the time stamp into the hash context representing the pool.
215 struct crypto_shash *hash;
225 * Jitter RNG's unpredictable behavior. If we have a slower hash
230 hash = crypto_alloc_shash(JENT_CONDITIONING_HASH, 0, 0);
231 if (IS_ERR(hash)) {
233 return PTR_ERR(hash);
235 rng->tfm = hash;
237 size = sizeof(struct shash_desc) + crypto_shash_descsize(hash);
244 sdesc->tfm = hash;