summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2015-05-11 17:47:42 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2015-05-13 10:31:26 +0800
commit5bf2a67315619b449ce641b9a4084be639785a7b (patch)
treea07564c85edea4d1ec527d5a806a7c7aa41cfdfe
parent153e9b3f2b1041c293903f2ad22e0f68f7f80f8d (diff)
downloadlinux-crypto-5bf2a67315619b449ce641b9a4084be639785a7b.tar.gz
linux-crypto-5bf2a67315619b449ce641b9a4084be639785a7b.zip
crypto: authencesn - Include internal/aead.h
All AEAD implementations must include internal/aead.h in order to access required helpers. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--crypto/authencesn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/authencesn.c b/crypto/authencesn.c
index 024bff23..91e2cc31 100644
--- a/crypto/authencesn.c
+++ b/crypto/authencesn.c
@@ -12,7 +12,7 @@
*
*/
-#include <crypto/aead.h>
+#include <crypto/internal/aead.h>
#include <crypto/internal/hash.h>
#include <crypto/internal/skcipher.h>
#include <crypto/authenc.h>