diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-11-30 04:17:28 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-10 16:16:45 -0500 |
commit | 15c67286685cddce207b646306e8819ec8268ede (patch) | |
tree | acb9d4e4b0180857112cac88995597c9992be982 /include/crypto | |
parent | 7f47073911f0e4384d38a0827d28305a177c8816 (diff) |
[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 'include/crypto')
-rw-r--r-- | include/crypto/internal/skcipher.h | 12 |
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( | |||
74 | return ablkcipher_request_ctx(&req->creq); | 74 | return ablkcipher_request_ctx(&req->creq); |
75 | } | 75 | } |
76 | 76 | ||
77 | static inline void ablkcipher_request_complete(struct ablkcipher_request *req, | ||
78 | int err) | ||
79 | { | ||
80 | req->base.complete(&req->base, err); | ||
81 | } | ||
82 | |||
83 | static inline void skcipher_givcrypt_complete( | ||
84 | struct skcipher_givcrypt_request *req, int err) | ||
85 | { | ||
86 | ablkcipher_request_complete(&req->creq, err); | ||
87 | } | ||
88 | |||
77 | #endif /* _CRYPTO_INTERNAL_SKCIPHER_H */ | 89 | #endif /* _CRYPTO_INTERNAL_SKCIPHER_H */ |
78 | 90 | ||