Commit cde6263f authored by Herbert Xu's avatar Herbert Xu
Browse files

crypto: shash - Add crypto_shash_ctx_aligned



This patch adds crypto_shash_ctx_aligned which will be needed
by hmac after its conversion to shash.

Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 619a6ebd
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -123,5 +123,10 @@ static inline struct crypto_shash *crypto_spawn_shash(
	return crypto_spawn_tfm2(&spawn->base);
}

static inline void *crypto_shash_ctx_aligned(struct crypto_shash *tfm)
{
	return crypto_tfm_ctx_aligned(&tfm->base);
}

#endif	/* _CRYPTO_INTERNAL_HASH_H */