X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=crypto%2Fahash.c;h=d19b52324cf520ee777743ee895efb2f537f5e62;hb=a0aace5ac0efdb2bcb71e10d9c9ca6a851fa59f9;hp=9c1dc8d6106a89a0f853271c1dfc49cd301ec983;hpb=f1b9fc591e437ec07626ba84e1d81be19cb00eb6;p=deliverable%2Flinux.git diff --git a/crypto/ahash.c b/crypto/ahash.c index 9c1dc8d6106a..d19b52324cf5 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c @@ -451,6 +451,7 @@ static int crypto_ahash_init_tfm(struct crypto_tfm *tfm) struct ahash_alg *alg = crypto_ahash_alg(hash); hash->setkey = ahash_nosetkey; + hash->has_setkey = false; hash->export = ahash_no_export; hash->import = ahash_no_import; @@ -463,8 +464,10 @@ static int crypto_ahash_init_tfm(struct crypto_tfm *tfm) hash->finup = alg->finup ?: ahash_def_finup; hash->digest = alg->digest; - if (alg->setkey) + if (alg->setkey) { hash->setkey = alg->setkey; + hash->has_setkey = true; + } if (alg->export) hash->export = alg->export; if (alg->import)