Async IPSec in AH4 mode

2010-02-12 Thread Bhaskara Peela
Hi, I want to provide asynchronous AH4 IPSec processing for 2.6.30 kernel version. I am planning to port asynchronous IPSec in AH mode from kernel version 2.6.33.rc6 to 2.6.30. This involves changes in async hashing in crypto api and net/ipv4/ah4.c. I am going through the changes between t

Re: [PATCH] crypto/arc4: convert this stream cipher into a block cipher

2010-02-12 Thread Sebastian Andrzej Siewior
* Adrian-Ken Rueegsegger | 2010-02-12 10:34:27 [+0100]: >Hi, Hi, >Sebastian Andrzej Siewior schrieb: >> The name is still ecb(aes) but since this is provided by the blkcipher >> itself, >Just to avoid any confusion you meant ecb(arc4) not ecb(aes) here right? Yes, I do. Not sure how I got aes i

Re: [PATCH] crypto/arc4: convert this stream cipher into a block cipher

2010-02-12 Thread Adrian-Ken Rueegsegger
Hi, Sebastian Andrzej Siewior schrieb: > the state has been moved from ctx into iv. That way encrypt()/decrypt() can > deliver the same result for a given IV. This patch makes the cipher work with > dm-crypt not that it is a good thing. However, the performance may have > improved :) > The name is

[PATCH] crypto/arc4: convert this stream cipher into a block cipher

2010-02-12 Thread Sebastian Andrzej Siewior
the state has been moved from ctx into iv. That way encrypt()/decrypt() can deliver the same result for a given IV. This patch makes the cipher work with dm-crypt not that it is a good thing. However, the performance may have improved :) The name is still ecb(aes) but since this is provided by the