aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/gcm.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-12-07 18:52:49 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-01-11 08:16:32 +1100
commit42c271c6c538857cb13c5ead5184d264d745f675 (patch)
tree9f6a05c756be3fc3f35ae7fe9b333a33986a2f56 /crypto/gcm.c
parent[CRYPTO] aead: Return EBADMSG for ICV mismatch (diff)
downloadlinux-dev-42c271c6c538857cb13c5ead5184d264d745f675.tar.xz
linux-dev-42c271c6c538857cb13c5ead5184d264d745f675.zip
[CRYPTO] scatterwalk: Move scatterwalk.h to linux/crypto
The scatterwalk infrastructure is used by algorithms so it needs to move out of crypto for future users that may live in drivers/crypto or asm/*/crypto. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/gcm.c')
-rw-r--r--crypto/gcm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/gcm.c b/crypto/gcm.c
index d60c340b0b9d..27483f361e80 100644
--- a/crypto/gcm.c
+++ b/crypto/gcm.c
@@ -10,13 +10,14 @@
#include <crypto/algapi.h>
#include <crypto/gf128mul.h>
+#include <crypto/scatterwalk.h>
#include <linux/err.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
-#include "scatterwalk.h"
+#include "internal.h"
struct gcm_instance_ctx {
struct crypto_spawn ctr;