diff options
| author | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-08 10:36:36 -0400 |
|---|---|---|
| committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-08 10:36:36 -0400 |
| commit | 0390e6aecf571ddac934e6c0644bb4038167b698 (patch) | |
| tree | 536436f64f2519b256a33a9666158cce93a25b9c /include/crypto | |
| parent | cde6263fa954dfc03ebe169aa3f7f71176d7901b (diff) | |
crypto: shash - Add __crypto_shash_cast
This patch adds __crypto_shash_cast which turns a crypto_tfm
into crypto_shash. It's analogous to the other __crypto_*_cast
functions.
It hasn't been needed until now since no existing shash algorithms
have had an init function.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
| -rw-r--r-- | include/crypto/internal/hash.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/crypto/internal/hash.h b/include/crypto/internal/hash.h index f1041140d3d9..3af34ca8e8bc 100644 --- a/include/crypto/internal/hash.h +++ b/include/crypto/internal/hash.h | |||
| @@ -128,5 +128,10 @@ static inline void *crypto_shash_ctx_aligned(struct crypto_shash *tfm) | |||
| 128 | return crypto_tfm_ctx_aligned(&tfm->base); | 128 | return crypto_tfm_ctx_aligned(&tfm->base); |
| 129 | } | 129 | } |
| 130 | 130 | ||
| 131 | static inline struct crypto_shash *__crypto_shash_cast(struct crypto_tfm *tfm) | ||
| 132 | { | ||
| 133 | return (struct crypto_shash *)tfm; | ||
| 134 | } | ||
| 135 | |||
| 131 | #endif /* _CRYPTO_INTERNAL_HASH_H */ | 136 | #endif /* _CRYPTO_INTERNAL_HASH_H */ |
| 132 | 137 | ||
