Re: [PATCH v4] crypto api: add crc32 pclmulqdq implementation and wrappers for table implementation

2013-01-11 Thread Tim Chen
On Fri, 2013-01-11 at 00:39 +, Dilger, Andreas wrote: > > Maybe there is some confusion here? The submitted patch is for CRC32, > while you are referring to CRC32C (note trailing "C")? Are they not > different CRC functions, or can both CRCs be computed by the same code > if there are diffe

RE: [PATCH][RFC] crypto: tcrypt - Ahash tests changed to run in parallel.

2013-01-11 Thread Garg Vakul-B16394
> -Original Message- > From: Phillips Kim-R1AAHA > Sent: Thursday, January 10, 2013 9:21 PM > To: Garg Vakul-B16394 > Cc: Jussi Kivilinna; linux-crypto@vger.kernel.org > Subject: Re: [PATCH][RFC] crypto: tcrypt - Ahash tests changed to run in > parallel. > > On Thu, 10 Jan 2013 00:49:23

[PATCH 2/2] crypto: caam - improve init for context state saves

2013-01-11 Thread Vakul Garg
From: Steve Cornelius Multiple function in asynchronous hashing use a saved-state block, a.k.a. struct caam_hash_state, which holds a stash of information between requests (init/update/final). Certain values in this state block are loaded for processing using an inline-if, and when this is done,

[PATCH 0/2] crypto: caam - Fix bugs in hashing module

2013-01-11 Thread Vakul Garg
These patches have been authored by Steve Cornelius. These patches fix uninitialised variables left in the hashing module. . Steve Cornelius (2): crypto: caam - Fix DMA size in descriptor in ahash_digest() crypto: caam - improve init for context state saves drivers/crypto/caam/caamhash.c |

[PATCH 1/2] crypto: caam - Fix DMA size in descriptor in ahash_digest()

2013-01-11 Thread Vakul Garg
From: Steve Cornelius Save of DMA size in extended descriptor was missing. Thus crashes could occur during post-request unmapping. Signed-off-by: Steve Cornelius --- drivers/crypto/caam/caamhash.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/crypto/caam/caam