[CRYPTO] cbc: Require block size to be a power of 2
authorHerbert Xu <herbert@gondor.apana.org.au>
Tue, 20 Nov 2007 09:36:00 +0000 (17:36 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 10 Jan 2008 21:16:19 +0000 (08:16 +1100)
commit50b6544e1371bfe884f787107a8de0c2f8546e8f
treec4147931acf41f6e24b19ee0c4dafb8a84ef6a8b
parent3c7f076da557eadb37240d70b0399ff9763fa2ae
[CRYPTO] cbc: Require block size to be a power of 2

All common block ciphers have a block size that's a power of 2.  In fact,
all of our block ciphers obey this rule.

If we require this then CBC can be optimised to avoid an expensive divide
on in-place decryption.

I've also changed the saving of the first IV in the in-place decryption
case to the last IV because that lets us use walk->iv (which is already
aligned) for the xor operation where alignment is required.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/cbc.c