ZFS with native encryption
zpool create -o ashift=12 -O compression=lz4 -O dnodesize=auto -O normalization=formD -O relatime=on -O xattr=sa -O atime=off -O acltype=posixacl -O encryption=aes-256-gcm -O keylocation=prompt -O keyformat=passphrase tank0 mirror wwn-0x5000cca22dcbf093 wwn-0x5000cca22dd2fc89 mirror wwn-0x5000cca22dd31cdb wwn-0x5000cca22dd0624
desencriptar sistema de ficheiros no twrp
encriptar partição em pen
Preparation
Prepare a mount point for your data and change ownership.
# Create a mount point
sudo mkdir /media/cryptoUSB
# Set permissions for the owner
sudo chown stefan:stefan /media/cryptoUSBCreate an Encrypted Device
Encrypt the device with LUKS. Note that all data on the partition will be overwritten during this process.
# Create encrypted device
sudo cryptsetup --verify-passphrase luksFormat /dev/sdX -c aes -s 256 -h sha256
encriptar e-mail no linux
montando um volume lvm encriptado
apt-get install cryptsetup
vgscan
vgchange -a y vg00
lvscan
mkdir /media/home
cryptsetup luksOpen /dev/vg00/home home_antigo
ls /dev/mapper
mount /dev/mapper/home_antigo /media/home
disk encription
How To Encrypt Directories/Partitions With eCryptfs On Debian Squeeze
http://www.howtoforge.com/how-to-encrypt-directories-partitions-with-ec…
http://www.hermann-uwe.de/blog/howto-disk-encryption-with-dm-crypt-luks…
http://www.richardneill.org/a22p-mdk11-0.php#encrypt2
visualizar o conteúdo da swap:
cat /dev/[swap-partition] | strings
activar encriptação por hardware na alix 2d13
para activar a encriptação por hardware nesta board temos que activar os módulos cryptosoft, cryptodev e ocf:
# modprobe cryptodev
# modprobe geode-aes
# modprobe cryptosoft
para testar:
openssl speed -evp aes-128-cbc -engine cryptodev
http://www.punknix.com/node/120
http://list.voyage.hk/pipermail/voyage-linux/2010-February/012511.html