Burning the cd |
||
| first | 1 of 4 | Mounting the cd using cryptsetup version 0.1 |
After patching cdrecord: Create encrypted cdrom from standard iso image for use with dm-crypt: # cdrecord -dev=0,0,0 -encrypt -encpass=mypassword image.iso Or alternately, if you would like to put the password in a file: # cdrecord -dev=0,0,0 -encrypt -encpassfile=path/to/passfile image.iso Note: cdrecord may not like trailing linefeeds, newlines, etc., at the end of the file. Even though hashalot's sha256 returns the same hash on a file that varies only be the ending type (newline, linefeed, or nothing), I suspect that cdrecord may hash each of these variants differently. Until someone can test this, I reccommend using NO end-of-file or end-of-line characters. Use "echo -n foo > testpass", "dd if=/dev/urandom of=testpass bs=1 count=32" or similar, but not a text editor. | ||
| first | 1 of 4 | Mounting the cd using cryptsetup version 0.1 |