mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
crypto: ahash - Add crypto_ahash_set_reqsize
This patch adds the helper crypto_ahash_set_reqsize so that implementations do not directly access the crypto_ahash structure. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
46309d8938
commit
fc00127fb6
@ -77,6 +77,12 @@ static inline struct ahash_alg *crypto_ahash_alg(
|
||||
return &crypto_ahash_tfm(tfm)->__crt_alg->cra_ahash;
|
||||
}
|
||||
|
||||
static inline void crypto_ahash_set_reqsize(struct crypto_ahash *tfm,
|
||||
unsigned int reqsize)
|
||||
{
|
||||
crypto_ahash_crt(tfm)->reqsize = reqsize;
|
||||
}
|
||||
|
||||
static inline int ahash_enqueue_request(struct crypto_queue *queue,
|
||||
struct ahash_request *request)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user