Re: [0/3] [DM] dm-crypt: Add async crypto support

2007-07-11 Thread Andreas Jellinghaus
Herbert Xu wrote: > I've rebased the async dm-crypt patches for 2.6.22. In doing > so I've refactored the kcryptd split so that all crypto operations > happen in kcryptd while all IO submissions occur in kcryptd-io. will this reduce latencies and stalls with dm-crypt? When copying large files dm-

Re: [ANN] Acrypto asynchronous crypto layer 2.6.19 release.

2006-12-19 Thread Andreas Jellinghaus
Evgeniy Polyakov wrote: You can change it in async_provider in compilation time or I can create module version. There is an item in related todo list to use crypto contexts, they were created exactly for such kind of things (actually for hardware devices which do not support realtime key changes)

Re: [ANN] Acrypto asynchronous crypto layer 2.6.19 release.

2006-12-18 Thread Andreas Jellinghaus
Evgeniy Polyakov wrote: Actually I do not recall what is 'size retrictions' - if you talk about possibility to use software crypto provider, which supports one cipher in a time, then yes, but it is intended to be used with hardware though. Otherwise I do not recall any problems pointed to me. s

Re: [ANN] Acrypto asynchronous crypto layer 2.6.19 release.

2006-12-17 Thread Andreas Jellinghaus
Does acrypto still have the same size restrictions I ran into with the last release? Thanks, Andreas - To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [ACRYPTO] New asynchronous crypto layer (acrypto) release.

2006-10-20 Thread Andreas Jellinghaus
Btw, async provider only supports AES-128 in CBC mode, so if you try different ciphers, there can be some problems. my code does SECTORS=`blockdev --getsize /dev/hda3` echo 0 $SECTORS crypt aes-cbc-essiv:sha256 $ROOTKEY 0 /dev/hda3 0 \ |dmsetup create root so this is not compatible wi

Re: [ACRYPTO] New asynchronous crypto layer (acrypto) release.

2006-10-19 Thread Andreas Jellinghaus
Hi, I finally got around testing 2.6.18.1 + acrypto. but it "does not work" - I usualy boot, enter my passphrases for rsa key / openssl decrypts some random bytes with them, and a hex version of those random bytes is used with dm-setup to initialize a dm-crypt mapping which again is used for moun

Re: [ACRYPTO] New asynchronous crypto layer (acrypto) release.

2006-09-28 Thread Andreas Jellinghaus
Evgeniy Polyakov wrote: Hello. I'm pleased to announce asynchronous crypto layer (acrypto) [1] release for 2.6.18 kernel tree. Acrypto allows to handle crypto requests asynchronously in hardware. Combined patchset includes: * acrypto core * IPsec ESP4 port to acrypto * dm-crypt port to ac