aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/crypto/aes_32.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/crypto/aes_32.c')
-rw-r--r--arch/x86/crypto/aes_32.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/crypto/aes_32.c b/arch/x86/crypto/aes_32.c
index 49aad9397f10..9b0ab50394b0 100644
--- a/arch/x86/crypto/aes_32.c
+++ b/arch/x86/crypto/aes_32.c
@@ -38,6 +38,7 @@
38 */ 38 */
39 39
40#include <asm/byteorder.h> 40#include <asm/byteorder.h>
41#include <crypto/aes.h>
41#include <linux/kernel.h> 42#include <linux/kernel.h>
42#include <linux/module.h> 43#include <linux/module.h>
43#include <linux/init.h> 44#include <linux/init.h>
@@ -48,9 +49,6 @@
48asmlinkage void aes_enc_blk(struct crypto_tfm *tfm, u8 *dst, const u8 *src); 49asmlinkage void aes_enc_blk(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
49asmlinkage void aes_dec_blk(struct crypto_tfm *tfm, u8 *dst, const u8 *src); 50asmlinkage void aes_dec_blk(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
50 51
51#define AES_MIN_KEY_SIZE 16
52#define AES_MAX_KEY_SIZE 32
53#define AES_BLOCK_SIZE 16
54#define AES_KS_LENGTH 4 * AES_BLOCK_SIZE 52#define AES_KS_LENGTH 4 * AES_BLOCK_SIZE
55#define RC_LENGTH 29 53#define RC_LENGTH 29
56 54