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-
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)
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
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
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
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
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