projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
619a6eb
)
crypto: shash - Add crypto_shash_ctx_aligned
author
Herbert Xu
<herbert@gondor.apana.org.au>
Wed, 8 Jul 2009 14:32:07 +0000
(22:32 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Wed, 8 Jul 2009 14:32:07 +0000
(22:32 +0800)
This patch adds crypto_shash_ctx_aligned which will be needed
by hmac after its conversion to shash.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
include/crypto/internal/hash.h
patch
|
blob
|
history
diff --git
a/include/crypto/internal/hash.h
b/include/crypto/internal/hash.h
index fa5c9fb7ce5a957d56169fe68b44788a53934aa1..f1041140d3d9e40512b623e41a0e2675ae6cd5be 100644
(file)
--- a/
include/crypto/internal/hash.h
+++ b/
include/crypto/internal/hash.h
@@
-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 */