forked from Minki/linux
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>
This commit is contained in:
parent
f2aefdab5d
commit
8d18e34c1f
@ -542,6 +542,12 @@ struct crypto_ahash *crypto_alloc_ahash(const char *alg_name, u32 type,
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(crypto_alloc_ahash);
|
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)
|
static int ahash_prepare_alg(struct ahash_alg *alg)
|
||||||
{
|
{
|
||||||
struct crypto_alg *base = &alg->halg.base;
|
struct crypto_alg *base = &alg->halg.base;
|
||||||
|
@ -260,6 +260,18 @@ static inline void crypto_free_ahash(struct crypto_ahash *tfm)
|
|||||||
crypto_destroy_tfm(tfm, crypto_ahash_tfm(tfm));
|
crypto_destroy_tfm(tfm, crypto_ahash_tfm(tfm));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* crypto_has_ahash() - Search for the availability of an ahash.
|
||||||
|
* @alg_name: is the cra_name / name or cra_driver_name / driver name of the
|
||||||
|
* ahash
|
||||||
|
* @type: specifies the type of the ahash
|
||||||
|
* @mask: specifies the mask for the ahash
|
||||||
|
*
|
||||||
|
* Return: true when the ahash is known to the kernel crypto API; false
|
||||||
|
* otherwise
|
||||||
|
*/
|
||||||
|
int crypto_has_ahash(const char *alg_name, u32 type, u32 mask);
|
||||||
|
|
||||||
static inline unsigned int crypto_ahash_alignmask(
|
static inline unsigned int crypto_ahash_alignmask(
|
||||||
struct crypto_ahash *tfm)
|
struct crypto_ahash *tfm)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user