Difference between revisions of "Encryption Software"

From Hack Sphere Labs Wiki
Jump to: navigation, search
(Truecrypt)
 
Line 1: Line 1:
 
=Creating Secure Passphrases=
 
=Creating Secure Passphrases=
 +
 +
DICE
  
 
=Algorithm Explanations=
 
=Algorithm Explanations=
Line 21: Line 23:
 
  sudo umount ~/my-mount-point
 
  sudo umount ~/my-mount-point
 
  sudo cryptsetup luksClose secret-device
 
  sudo cryptsetup luksClose secret-device
 +
 +
 +
=phonestuff=
 +
*https://github.com/whispersystems/

Latest revision as of 10:51, 29 April 2015

Creating Secure Passphrases

DICE

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


phonestuff