crypto: kpp - add get/set_flags helpers
These helpers will be used for fallbacks to kpp software implementations. Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
b8ae5c7387
commit
66d3994c67
|
@ -145,6 +145,16 @@ static inline struct crypto_kpp *crypto_kpp_reqtfm(struct kpp_request *req)
|
||||||
return __crypto_kpp_tfm(req->base.tfm);
|
return __crypto_kpp_tfm(req->base.tfm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline u32 crypto_kpp_get_flags(struct crypto_kpp *tfm)
|
||||||
|
{
|
||||||
|
return crypto_tfm_get_flags(crypto_kpp_tfm(tfm));
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void crypto_kpp_set_flags(struct crypto_kpp *tfm, u32 flags)
|
||||||
|
{
|
||||||
|
crypto_tfm_set_flags(crypto_kpp_tfm(tfm), flags);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* crypto_free_kpp() - free KPP tfm handle
|
* crypto_free_kpp() - free KPP tfm handle
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue