Re: [U-Boot] [PATCH v3 05/23] Add AES crypto library

2012-04-05 Thread Simon Glass
Hi Yen, On Tue, Apr 3, 2012 at 11:46 AM, Yen Lin wrote: > Hi Simon, > > On Mon, 2012-04-02 at 16:18 -0700, Simon Glass wrote: >> From: Yen Lin >> >> 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

Re: [U-Boot] [PATCH v3 05/23] Add AES crypto library

2012-04-03 Thread Yen Lin
Hi Simon, On Mon, 2012-04-02 at 16:18 -0700, Simon Glass wrote: > From: Yen Lin > > 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. > Could you fix "form" to "from"? Signed-off-by: Yen Lin Reg

[U-Boot] [PATCH v3 05/23] Add AES crypto library

2012-04-02 Thread Simon Glass
From: Yen Lin 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 --- Changes in v2: - Tidy whitespace problems - Use const for sbox arrays include/aes.h | 70 +++ lib/M