Re: [PATCH 3/3] crypto: talitos - Add ahash algorithms (1st cut, digest only)

2009-03-24 Thread Kim Phillips
On Sun, 15 Mar 2009 20:21:50 -0500 Lee Nipper lee.nip...@gmail.com wrote: + /* first DWORD empty */ + desc-ptr[0].len = 0; + desc-ptr[0].ptr = 0; + desc-ptr[0].j_extent = 0; + + /* second DWORD empty */ + desc-ptr[1].len = 0; + desc-ptr[1].ptr = 0; +

[PATCH 3/3] crypto: talitos - Add ahash algorithms (1st cut, digest only)

2009-03-15 Thread Lee Nipper
This patch adds simple ahash algorithms for sha1, hmac(sha1), sha256, hmac(sha256), sha384, hmac(sha384), sha512. hmac(sha512). md5, hmac(md5). The implementation provides digest only, as the update and final functions are omitted. Signed-off-by: Lee Nipper lee.nip...@gmail.com ---