Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75972
b: refs/heads/master
c: 15c6728
h: refs/heads/master
v: v3
  • Loading branch information
Herbert Xu committed Jan 10, 2008
1 parent c7fb1f3 commit 463d1f7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7f47073911f0e4384d38a0827d28305a177c8816
refs/heads/master: 15c67286685cddce207b646306e8819ec8268ede
12 changes: 12 additions & 0 deletions trunk/include/crypto/internal/skcipher.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit 463d1f7

Please sign in to comment.