diff options
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/arc4.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/crypto/arc4.c b/crypto/arc4.c index 652d24399afa..6c93342e3405 100644 --- a/crypto/arc4.c +++ b/crypto/arc4.c @@ -13,14 +13,11 @@ */ #include <crypto/algapi.h> +#include <crypto/arc4.h> #include <crypto/internal/skcipher.h> #include <linux/init.h> #include <linux/module.h> -#define ARC4_MIN_KEY_SIZE 1 -#define ARC4_MAX_KEY_SIZE 256 -#define ARC4_BLOCK_SIZE 1 - struct arc4_ctx { u32 S[256]; u32 x, y; |