7.6. CryptoFS

7.6.1. Kryptovaná CD

section id="fragment.section_template" condition="author"

Zdroje a odkazy:

ToDo list

  1. FIXME:

FIXME:

In /etc/conf.modules, add:

alias loop-xfer-gen-0 loop_gen
alias loop-xfer-gen-10 loop_gen
alias cipher-4 blowfish            # Blowfish
alias cipher-6 idea                # IDEA
alias cipher-7 serp6f              # Serpent
alias cipher-8 mars6               # MARS
alias cipher-9 twofish             # Twofish
alias cipher-11 rc62               # RC6
alias cipher-15 dfc2               # DFC

Balíčky v Dabian/GNU Linux

Example #4 from aespipe README: Create encrypted ISO9660 CD-ROM image that can be mounted using Linux loop-AES crypto package:

# mkisofs -r directory-tree | aespipe -e AES128 -T >image.iso

This image file can then be mounted under Linux like this:

# mount -t iso9660 image.iso /cdrom -o loop=/dev/loop0,encryption=AES128

Or, after writing image.iso to CD-ROM, like this:

# mount -t iso9660 /dev/cdrom /cdrom -o loop=/dev/loop0,encryption=AES128

aespipe is available here: http://loop-aes.sourceforge.net/aespipe/aespipe-v2.1c.tar.bz2

encrypted partition:

# losetup /dev/loop0 /dev/hda4 --encryption aes -k 256 --phash sha512
enter your password
# mke2fs /dev/loop0
# mount /dev/loop0 /mnt