[PATCH] crypto: talitos - Fix modpost warning

2008-12-02 Thread Kumar Gala
Removed __devexit from talitos_remove() since its also called from talitos_probe(). WARNING: vmlinux.o(.text+0x28a008): Section mismatch in reference from the function talitos_probe() to the function .devexit.text:talitos_remove() The function talitos_probe() references a function in an exit sect

[PATCH 5/5] crypto: michael_mic - Switch to shash

2008-12-02 Thread Adrian-Ken Rueegsegger
This patch changes michael_mic to the new shash interface. Signed-off-by: Adrian-Ken Rueegsegger <[EMAIL PROTECTED]> --- crypto/michael_mic.c | 63 ++--- 1 files changed, 33 insertions(+), 30 deletions(-) diff --git a/crypto/michael_mic.c b/crypto/m

[PATCH 4/5] crypto: tgr192 - Switch to shash

2008-12-02 Thread Adrian-Ken Rueegsegger
This patch changes tgr192, tgr160 and tgr128 to the new shash interface. Signed-off-by: Adrian-Ken Rueegsegger <[EMAIL PROTECTED]> --- crypto/tgr192.c | 135 +-- 1 files changed, 71 insertions(+), 64 deletions(-) diff --git a/crypto/tgr192.c b

[PATCH 3/5] crypto: sha256 - Switch to shash

2008-12-02 Thread Adrian-Ken Rueegsegger
This patch changes sha256 and sha224 to the new shash interface. Signed-off-by: Adrian-Ken Rueegsegger <[EMAIL PROTECTED]> --- crypto/sha256_generic.c | 104 +- 1 files changed, 56 insertions(+), 48 deletions(-) diff --git a/crypto/sha256_generic.c b/

[PATCH 2/5] crypto: md5 - Switch to shash

2008-12-02 Thread Adrian-Ken Rueegsegger
This patch changes md5 to the new shash interface. Signed-off-by: Adrian-Ken Rueegsegger <[EMAIL PROTECTED]> --- crypto/md5.c | 50 -- 1 files changed, 28 insertions(+), 22 deletions(-) diff --git a/crypto/md5.c b/crypto/md5.c index 39268f3..83eb

[PATCH 1/5] crypto: md4 - Switch to shash

2008-12-02 Thread Adrian-Ken Rueegsegger
This patch changes md4 to the new shash interface. Signed-off-by: Adrian-Ken Rueegsegger <[EMAIL PROTECTED]> --- crypto/md4.c | 52 +--- 1 files changed, 29 insertions(+), 23 deletions(-) diff --git a/crypto/md4.c b/crypto/md4.c index a143c4a..7f

Re: [PATCH] crypto: sha1 - Switch to shash

2008-12-02 Thread Herbert Xu
On Tue, Dec 02, 2008 at 12:56:53AM +0100, Adrian-Ken Rueegsegger wrote: > This patch changes sha1 to the new shash interface. > > Signed-off-by: Adrian-Ken Rueegsegger <[EMAIL PROTECTED]> Patch applied. Thanks! -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL P

Re: next-20081125: crypto hard disk gets unaccessable

2008-12-02 Thread Nico -telmich- Schottelius
Same issue with next-20081201, dmesg attached. I am not sure whether this happened before I tried to suspend it the second time (echo mem > /sys/power/state) or directly when I issued that command (maybe the latter one). One time suspend + resume worked, though. -- Think about Free and Open Sou

Re: Updated Openssl Patch to support Linux CryptoAPI v3

2008-12-02 Thread Evgeniy Polyakov
On Mon, Dec 01, 2008 at 04:28:49PM -0800, Shasi Pulijala ([EMAIL PROTECTED]) wrote: > This Openssl patch is the version 3 which incorporates some changes suggested > by the Linux Crypto Maintainer. Openssl still needs to be patched with OCF > first to use the linux cryptodev interface. The major

Re: ESP output when using NULL encryption and NON authentication

2008-12-02 Thread Dean Jenkins
Hi Herbert, Thanks for the clue. I had set the IV size to AES_BLOCK_SIZE in my NULL crypto registered structure. Now fixed the IV size to 0 and put the maxauthsize also to 0. Now I have basic Async AEAD NULL enc and NON auth working with ping over ESP. Regards, Dean Jenkins MontaVista Software --