[PATCH] crypto: hash - Added scatter list walking helper

2008-07-09 Thread Herbert Xu
Hi: This patch lets us convert existing software implementations of hash algorithms to use the ahash interface. It's similar to how the blkcipher walking works. commit 505ae158f41441b9c7e65116b9cb4df7ab1d6753 Author: Herbert Xu <[EMAIL PROTECTED]> Date: Mon Jul 7 22:19:53 2008 +0800 crypt

Re: FW: [Fwd: [PATCH]Using Intel CRC32 instruction to implement hardware accelerated CRC32c algorithm.]

2008-07-09 Thread Herbert Xu
On Tue, Jul 08, 2008 at 06:25:54AM -0400, austin zhang wrote: > > Agreed. And which module in crypto is the template for following the crypto > API? I've just converted the crc32c module over to the new interface. You can use this as an example. > > In fact, we could even skip 2) and reimplement

[PATCH] crypto: talitos - add support for sha256 and md5 variants

2008-07-09 Thread Lee Nipper
This patch adds support for: authenc(hmac(sha256),cbc(aes)), authenc(hmac(sha256),cbc(des3_ede)), authenc(hmac(md5),cbc(aes)), authenc(hmac(md5),cbc(des3_ede)). Some constant usage was changed to use aes, des, and sha include files. Signed-off-by: Lee Nipper <[EMAIL PROTECTED]> --- This patch appl