Difference between revisions of "Encryption Software"

From Hack Sphere Labs Wiki
Jump to: navigation, search
(Created page with "=Creating Secure Passphrases= =Algorithm Explanations= *CipherSaber: http://ciphersaber.gurus.org/ *https://github.com/moserware/AES-Illustrated *Do not forget RSA =Truecr...")
 
(Truecrypt)
Line 9: Line 9:
 
=Truecrypt=
 
=Truecrypt=
 
The Truecrypt Audit of 7.1a phase one is done:  https://opencryptoaudit.org/reports/iSec_Final_Open_Crypto_Audit_Project_TrueCrypt_Security_Assessment.pdf
 
The Truecrypt Audit of 7.1a phase one is done:  https://opencryptoaudit.org/reports/iSec_Final_Open_Crypto_Audit_Project_TrueCrypt_Security_Assessment.pdf
 +
 +
=luks=
 +
http://elephly.net/posts/2013-10-01-dm-crypt.html
 +
 +
dd if=/dev/zero bs=1M count=100 of=~/my-container.img
 +
sudo cryptsetup luksFormat ~/mycontainer
 +
sudo cryptsetup luksOpen ~/mycontainer secret-device
 +
sudo mkfs.ext4 /dev/mapper/secret-device
 +
mkdir ~/my-mount-point
 +
sudo mount /dev/mapper/secret-device ~/my-mount-point
 +
sudo umount ~/my-mount-point
 +
sudo cryptsetup luksClose secret-device

Revision as of 13:02, 19 March 2015

Creating Secure Passphrases

Algorithm Explanations


Truecrypt

The Truecrypt Audit of 7.1a phase one is done: https://opencryptoaudit.org/reports/iSec_Final_Open_Crypto_Audit_Project_TrueCrypt_Security_Assessment.pdf

luks

http://elephly.net/posts/2013-10-01-dm-crypt.html

dd if=/dev/zero bs=1M count=100 of=~/my-container.img
sudo cryptsetup luksFormat ~/mycontainer
sudo cryptsetup luksOpen ~/mycontainer secret-device
sudo mkfs.ext4 /dev/mapper/secret-device
mkdir ~/my-mount-point
sudo mount /dev/mapper/secret-device ~/my-mount-point
sudo umount ~/my-mount-point
sudo cryptsetup luksClose secret-device