Hi:
Here is the crypto update for 2.6.24:
Please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
or
master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Summary:
* Added SEED algorithm.
* Added XTS block cipher mode.
* Added new aead type (essenti
On Wed, Oct 10, 2007 at 01:18:12AM +0200, Sebastian Siewior wrote:
> Commit 553011f7cc9b86e10f157bf175bf7c883039c8c6
> [CRYPTO] blkcipher: Add IV generation
>
> broke the three block modes because the new logic expects the
> block mode to provide the IV instead of the crypto user.
> Now the three
Commit 553011f7cc9b86e10f157bf175bf7c883039c8c6
[CRYPTO] blkcipher: Add IV generation
broke the three block modes because the new logic expects the
block mode to provide the IV instead of the crypto user.
Now the three block modes are using the same "random" function
for IV creating like cbc does.
This should contain the geniv as well as all the
improvements discussed. All the testcases pass.
Regards,
Joy
diff -urpN linux-2.6.22.aead/crypto/ctr.c linux-2.6.22.aead.patch/crypto/ctr.c
--- linux-2.6.22.aead/crypto/ctr.c 1969-12-31 18:00:00.0 -0600
+++ linux-2.6.22.aead.patch/cryp
On Mon, Oct 08, 2007 at 03:33:31PM +, Jan Glauber wrote:
> There are currently several SHA implementations that all define their own
> initialization vectors and size values. Since this values are idential
> move them to a header file under include/crypto.
>
> The Patch should apply to cryptod