summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/crypto/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/crypto/aes.h')
-rw-r--r--arch/x86/include/asm/crypto/aes.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/include/asm/crypto/aes.h b/arch/x86/include/asm/crypto/aes.h
new file mode 100644
index 000000000000..80545a1cbe39
--- /dev/null
+++ b/arch/x86/include/asm/crypto/aes.h
@@ -0,0 +1,11 @@
+#ifndef ASM_X86_AES_H
+#define ASM_X86_AES_H
+
+#include <linux/crypto.h>
+#include <crypto/aes.h>
+
+void crypto_aes_encrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst,
+ const u8 *src);
+void crypto_aes_decrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst,
+ const u8 *src);
+#endif