Lines Matching defs:hash
15 #include <crypto/internal/hash.h>
25 struct crypto_shash *hash;
50 struct crypto_shash *hash = ctx->hash;
51 SHASH_DESC_ON_STACK(shash, hash);
54 shash->tfm = hash;
95 desc->tfm = ctx->hash;
143 struct crypto_shash *hash;
148 hash = crypto_spawn_shash(spawn);
149 if (IS_ERR(hash))
150 return PTR_ERR(hash);
153 crypto_shash_descsize(hash);
155 ctx->hash = hash;
162 crypto_free_shash(ctx->hash);
192 /* The underlying hash algorithm must not require a key */
258 MODULE_DESCRIPTION("HMAC hash algorithm");