diff options
Diffstat (limited to 'crypto/aes.c')
-rw-r--r-- | crypto/aes.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/crypto/aes.c b/crypto/aes.c index 0a6a5c143686..a5017292e066 100644 --- a/crypto/aes.c +++ b/crypto/aes.c | |||
@@ -75,12 +75,11 @@ byte(const u32 x, const unsigned n) | |||
75 | 75 | ||
76 | struct aes_ctx { | 76 | struct aes_ctx { |
77 | int key_length; | 77 | int key_length; |
78 | u32 E[60]; | 78 | u32 buf[120]; |
79 | u32 D[60]; | ||
80 | }; | 79 | }; |
81 | 80 | ||
82 | #define E_KEY ctx->E | 81 | #define E_KEY (&ctx->buf[0]) |
83 | #define D_KEY ctx->D | 82 | #define D_KEY (&ctx->buf[60]) |
84 | 83 | ||
85 | static u8 pow_tab[256] __initdata; | 84 | static u8 pow_tab[256] __initdata; |
86 | static u8 log_tab[256] __initdata; | 85 | static u8 log_tab[256] __initdata; |