You are not logged in.
Pages: 1
I am in the middle of setting up an encrypted partition via this tutorial:
http://wiki.archlinux.org/index.php/Sys … r_dm-crypt
I've loaded these modules:
dm-crypt
aes-i586
sha256
geode-aes
lrw
But am getting this:
cryptsetup -c aes-lrw-benbi -y -t15 -T1 luksFormat /dev/sda3
WARNING!
========
This will overwrite data on /dev/sda3 irrevocably.
Are you sure? (Type uppercase yes): YES
Enter LUKS passphrase:
Verify passphrase:
Command failed: Failed to setup dm-crypt key mapping.
Check kernel for support for the aes-lrw-benbi cipher spec and verify that /dev/sda3 contains at least 133 sectors
However, this works:
cryptsetup -c aes -y -t15 -T1 luksFormat /dev/sda3
WARNING!
========
This will overwrite data on /dev/sda3 irrevocably.
Are you sure? (Type uppercase yes): YES
Enter LUKS passphrase:
Verify passphrase:
Command successful.
Offline
You have to specify the keysize + 128 with the -s option for *-benbi
eg -s 384 for a 256bit key
Last edited by hrist (2008-06-26 10:05:20)
two - Arch64 | dwm | nvidia
three - Arch64 | dwm | nvidia
Offline
Thanks for the reply, '-s 384' works. I would like to go stronger, though (512bit key), but am getting this:
# cryptsetup -c aes-lrw-benbi -s 640 -y -t15 -T1 luksFormat /dev/sda3
WARNING!
========
This will overwrite data on /dev/sda3 irrevocably.
Are you sure? (Type uppercase yes): YES
Enter LUKS passphrase:
Verify passphrase:
Command failed: Failed to setup dm-crypt key mapping.
Check kernel for support for the aes-lrw-benbi cipher spec and verify that /dev/sda3 contains at least 633 sectors
Does the aes/lrw-benbi combination not support keys that large? Is there a secure AES method that does allow 512-bit keys?
Offline
Pages: 1