Re: [U-Boot] [PATCH 01/14] Add AES crypto library

2012-01-08 Thread Marek Vasut
On Monday 26 December 2011 14:32:54 Simon Glass wrote: --- /dev/null +++ b/lib/aes.c +static u8 sbox[256] = { +static u8 inv_sbox[256] = { +static u8 x2_sbox[256] = { +static u8 x3_sbox[256] = { +static u8 x_time_9[256] = { +static u8 x_time_b[256] = { +static u8

Re: [U-Boot] [PATCH 01/14] Add AES crypto library

2012-01-08 Thread Mike Frysinger
On Sunday 08 January 2012 03:57:47 Marek Vasut wrote: On Monday 26 December 2011 14:32:54 Simon Glass wrote: --- /dev/null +++ b/lib/aes.c +static u8 sbox[256] = { +static u8 inv_sbox[256] = { +static u8 x2_sbox[256] = { +static u8 x3_sbox[256] = { +static u8

Re: [U-Boot] [PATCH 01/14] Add AES crypto library

2012-01-08 Thread Marek Vasut
On Sunday 08 January 2012 03:57:47 Marek Vasut wrote: On Monday 26 December 2011 14:32:54 Simon Glass wrote: --- /dev/null +++ b/lib/aes.c +static u8 sbox[256] = { +static u8 inv_sbox[256] = { +static u8 x2_sbox[256] = { +static u8 x3_sbox[256] = { +static u8

Re: [U-Boot] [PATCH 01/14] Add AES crypto library

2012-01-08 Thread Simon Glass
Hi Marek, On Sun, Jan 8, 2012 at 2:40 AM, Marek Vasut marek.va...@gmail.com wrote: On Sunday 08 January 2012 03:57:47 Marek Vasut wrote: On Monday 26 December 2011 14:32:54 Simon Glass wrote: --- /dev/null +++ b/lib/aes.c +static u8 sbox[256] = { +static u8 inv_sbox[256] =

Re: [U-Boot] [PATCH 01/14] Add AES crypto library

2012-01-07 Thread Mike Frysinger
On Monday 26 December 2011 14:32:54 Simon Glass wrote: --- /dev/null +++ b/lib/aes.c +static u8 sbox[256] = { +static u8 inv_sbox[256] = { +static u8 x2_sbox[256] = { +static u8 x3_sbox[256] = { +static u8 x_time_9[256] = { +static u8 x_time_b[256] = { +static u8 x_time_d[256] = {

[U-Boot] [PATCH 01/14] Add AES crypto library

2011-12-26 Thread Simon Glass
From: Yen Lin ye...@nvidia.com Add support for AES using an implementation form Karl Malbrain. This offers small code size (around 5KB on ARM) and supports 128-bit AES only. Signed-off-by: Simon Glass s...@chromium.org --- include/aes.h | 70 +++ lib/Makefile |1 + lib/aes.c |