Ajouté par BoboTiG le 18/09/2010 à 13:46
# Installation :
apt-get install ccrypt
# Chiffrer le fichier test.txt (ccencrypt est un alias de ccrypt -e) :
ccrypt -e test.txt
ccencrypt test.txt
# Déchiffrer le fichier test.txt.cpt (ccdecrypt est un alias de ccrypt -d) :
ccrypt -d test.txt.cpt
ccdecrypt test.txt.cpt
# Afficher le contenu du fichier test.txt.cpt (ccencrypt est un alias de ccrypt -c) :
ccrypt -c test.txt.cpt
ccat test.txt.cpt