Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 22342
b: refs/heads/master
c: 55e9dce
h: refs/heads/master
v: v3
  • Loading branch information
David McCullough authored and Herbert Xu committed Mar 21, 2006
1 parent 287f3c0 commit 6763e34
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 06b42aa94b65806b4f8c5fc893ef97a2f491fb32
refs/heads/master: 55e9dce37ddf3ab358ba1d1e9eef4ee4bd8174a6
7 changes: 3 additions & 4 deletions trunk/arch/x86_64/crypto/aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,11 @@ static inline u8 byte(const u32 x, const unsigned n)
struct aes_ctx
{
u32 key_length;
u32 E[60];
u32 D[60];
u32 buf[120];
};

#define E_KEY ctx->E
#define D_KEY ctx->D
#define E_KEY (&ctx->buf[0])
#define D_KEY (&ctx->buf[60])

static u8 pow_tab[256] __initdata;
static u8 log_tab[256] __initdata;
Expand Down
7 changes: 3 additions & 4 deletions trunk/crypto/aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,11 @@ byte(const u32 x, const unsigned n)

struct aes_ctx {
int key_length;
u32 E[60];
u32 D[60];
u32 buf[120];
};

#define E_KEY ctx->E
#define D_KEY ctx->D
#define E_KEY (&ctx->buf[0])
#define D_KEY (&ctx->buf[60])

static u8 pow_tab[256] __initdata;
static u8 log_tab[256] __initdata;
Expand Down

0 comments on commit 6763e34

Please sign in to comment.