aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/algapi.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/crypto/algapi.h b/include/crypto/algapi.h
index b2b1e6efd812..8081294e4328 100644
--- a/include/crypto/algapi.h
+++ b/include/crypto/algapi.h
@@ -160,6 +160,11 @@ static inline void *crypto_ablkcipher_ctx(struct crypto_ablkcipher *tfm)
160 return crypto_tfm_ctx(&tfm->base); 160 return crypto_tfm_ctx(&tfm->base);
161} 161}
162 162
163static inline void *crypto_ablkcipher_ctx_aligned(struct crypto_ablkcipher *tfm)
164{
165 return crypto_tfm_ctx_aligned(&tfm->base);
166}
167
163static inline struct crypto_blkcipher *crypto_spawn_blkcipher( 168static inline struct crypto_blkcipher *crypto_spawn_blkcipher(
164 struct crypto_spawn *spawn) 169 struct crypto_spawn *spawn)
165{ 170{