Re: Can't open encrypted partitions

2006-02-24 Thread Adam Porter
Kees Vonk wrote: > Adam Porter wrote: > >> Have you checked the actual output of GPG? > > I have checked the GPG output (it is 64 lines of random characters, as > expected). I originally generated the keys for aes-loop multi-key setup, > and then forgot to truncate it when I started using dm-cry

Re: Can't open encrypted partitions

2006-02-23 Thread Kees Vonk
Adam Porter wrote: > Have you checked the actual output of GPG? I have checked the GPG output (it is 64 lines of random characters, as expected). I originally generated the keys for aes-loop multi-key setup, and then forgot to truncate it when I started using dm-crypt. Would the fact that there a

Re: Can't open encrypted partitions

2006-02-20 Thread Adam Porter
Have you checked the actual output of GPG? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Can't open encrypted partitions

2006-02-16 Thread the Vonks
I have three encrypted partitions, which I normally open like this: gpg --decrypt keyfile.gpg | cryptsetup create misc /dev/hda11 mount /dev/mapper/misc Where keyfile.gpg is created like this: head -c 2880 /dev/urandom | uuencode -m - | head -n 65 | tail -n 64 | gpg --symmetric -a Howe