Re: [U-Boot] [PATCH 1/3] fit: Add support for SHA256 hash

2014-02-12 Thread Marek Vasut
On Monday, February 10, 2014 at 07:35:44 AM, Heiko Schocher wrote: Hello Marek, Am 08.02.2014 15:18, schrieb Marek Vasut: On Thursday, February 06, 2014 at 06:19:11 AM, Heiko Schocher wrote: Hello Marek, Am 06.02.2014 04:47, schrieb Marek Vasut: This patch adds support for SHA-256

Re: [U-Boot] [PATCH 1/3] fit: Add support for SHA256 hash

2014-02-09 Thread Heiko Schocher
Hello Marek, Am 08.02.2014 15:18, schrieb Marek Vasut: On Thursday, February 06, 2014 at 06:19:11 AM, Heiko Schocher wrote: Hello Marek, Am 06.02.2014 04:47, schrieb Marek Vasut: This patch adds support for SHA-256 hash into the FIT image. The usage is as with the other hashing algorithms:

Re: [U-Boot] [PATCH 1/3] fit: Add support for SHA256 hash

2014-02-08 Thread Marek Vasut
On Thursday, February 06, 2014 at 06:19:11 AM, Heiko Schocher wrote: Hello Marek, Am 06.02.2014 04:47, schrieb Marek Vasut: This patch adds support for SHA-256 hash into the FIT image. The usage is as with the other hashing algorithms: hash@1 { algo =

Re: [U-Boot] [PATCH 1/3] fit: Add support for SHA256 hash

2014-02-08 Thread Marek Vasut
On Thursday, February 06, 2014 at 01:17:36 PM, Wolfgang Denk wrote: Dear Marek, In message 1391658426-24799-1-git-send-email-ma...@denx.de you wrote: This patch adds support for SHA-256 hash into the FIT image. The usage is as with the other hashing algorithms: ... -#define

Re: [U-Boot] [PATCH 1/3] fit: Add support for SHA256 hash

2014-02-06 Thread Wolfgang Denk
Dear Marek, In message 1391658426-24799-1-git-send-email-ma...@denx.de you wrote: This patch adds support for SHA-256 hash into the FIT image. The usage is as with the other hashing algorithms: ... -#define FIT_MAX_HASH_LEN 20 /* max(crc32_len(4), sha1_len(20)) */ +#define

[U-Boot] [PATCH 1/3] fit: Add support for SHA256 hash

2014-02-05 Thread Marek Vasut
This patch adds support for SHA-256 hash into the FIT image. The usage is as with the other hashing algorithms: hash@1 { algo = sha256; }; Signed-off-by: Marek Vasut ma...@denx.de --- common/image-fit.c | 5 + include/image.h| 15 ++-

Re: [U-Boot] [PATCH 1/3] fit: Add support for SHA256 hash

2014-02-05 Thread Heiko Schocher
Hello Marek, Am 06.02.2014 04:47, schrieb Marek Vasut: This patch adds support for SHA-256 hash into the FIT image. The usage is as with the other hashing algorithms: hash@1 { algo = sha256; }; Signed-off-by: Marek Vasutma...@denx.de --- common/image-fit.c