[CRYPTO] aes: Move common defines into a header file
[linux-block.git] / crypto / aes_generic.c
index 9401dca85e87c9a5c3908ef6cfbd78fa9a20db89..6683260475f9427b3b28d056a75fd151687c4106 100644 (file)
@@ -52,6 +52,7 @@
     s/RIJNDAEL(d_key)/D_KEY/g
 */
 
+#include <crypto/aes.h>
 #include <linux/module.h>
 #include <linux/init.h>
 #include <linux/types.h>
 #include <linux/crypto.h>
 #include <asm/byteorder.h>
 
-#define AES_MIN_KEY_SIZE       16
-#define AES_MAX_KEY_SIZE       32
-
-#define AES_BLOCK_SIZE         16
-
 /*
  * #define byte(x, nr) ((unsigned char)((x) >> (nr*8))) 
  */