aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-11-30 20:17:28 +1100
committerHerbert Xu <herbert@gondor.apana.org.au>2008-01-11 08:16:45 +1100
commit15c67286685cddce207b646306e8819ec8268ede (patch)
treeacb9d4e4b0180857112cac88995597c9992be982 /include/crypto
parent[CRYPTO] chainiv: Add chain IV generator (diff)
downloadlinux-dev-15c67286685cddce207b646306e8819ec8268ede.tar.xz
linux-dev-15c67286685cddce207b646306e8819ec8268ede.zip
[CRYPTO] skcipher: Added skcipher_givcrypt_complete
This patch adds the helper skcipher_givcrypt_complete which should be called when an ablkcipher algorithm has completed a givcrypt request. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--include/crypto/internal/skcipher.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/crypto/internal/skcipher.h b/include/crypto/internal/skcipher.h
index 07e7c82324ad..80c5bfb14a60 100644
--- a/include/crypto/internal/skcipher.h
+++ b/include/crypto/internal/skcipher.h
@@ -74,5 +74,17 @@ static inline void *skcipher_givcrypt_reqctx(
return ablkcipher_request_ctx(&req->creq);
}
+static inline void ablkcipher_request_complete(struct ablkcipher_request *req,
+ int err)
+{
+ req->base.complete(&req->base, err);
+}
+
+static inline void skcipher_givcrypt_complete(
+ struct skcipher_givcrypt_request *req, int err)
+{
+ ablkcipher_request_complete(&req->creq, err);
+}
+
#endif /* _CRYPTO_INTERNAL_SKCIPHER_H */