diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-23 08:52:40 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-25 17:42:13 +0300 |
commit | 8d18e34c1fe22418ae0b5475ab0d1956d69ad195 (patch) | |
tree | 805ed0cdc260466e4e58f5037e4d2c275650ef33 /crypto | |
parent | f2aefdab5dff83d3c801449051be1ba72c7e933a (diff) | |
download | linux-8d18e34c1fe22418ae0b5475ab0d1956d69ad195.tar.xz |
crypto: hash - Add crypto_has_ahash helper
This patch adds the helper crypto_has_ahash which should replace
crypto_has_hash.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/ahash.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c index d19b52324cf5..8b08a59221a6 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c @@ -542,6 +542,12 @@ struct crypto_ahash *crypto_alloc_ahash(const char *alg_name, u32 type, } EXPORT_SYMBOL_GPL(crypto_alloc_ahash); +int crypto_has_ahash(const char *alg_name, u32 type, u32 mask) +{ + return crypto_type_has_alg(alg_name, &crypto_ahash_type, type, mask); +} +EXPORT_SYMBOL_GPL(crypto_has_ahash); + static int ahash_prepare_alg(struct ahash_alg *alg) { struct crypto_alg *base = &alg->halg.base; |