Answers:
openssl
预先安装在Mac OS X上。
您可以使用以下命令:
# encrypt file.txt to file.enc using 256-bit AES in CBC mode
openssl enc -aes-256-cbc -salt -in file.txt -out file.enc
# the same, only the output is base64 encoded for, e.g., e-mail
openssl enc -aes-256-cbc -a -salt -in file.txt -out file.enc
# decrypt binary file.enc
openssl enc -d -aes-256-cbc -in file.enc -out file.txt
# decrypt base64-encoded version
openssl enc -d -aes-256-cbc -a -in file.enc -out file.txt
这些命令使用带有密码块链接(CBC)的256位AES加密,该加密与现在一样安全。
openssl
命令,它就会要求您enter aes-256-cbc encryption password
。
-pass pass:MYSECRETPASSWORD
,但密码是那么当然不能从隐藏的ps
,等等
我为此构建了一个shell脚本。您可以在Mac或Linux上使用它。
#!/bin/bash
#encrypt files with aes-256-cbc cipher using openssl
#encrypt files
if [ $1 == "-e" ];
then
if [ -f "$2" ];
then
openssl aes-256-cbc -a -e -salt -in "$2" -out "$2.aes"
else
echo "This file does not exist!"
fi
#decrypt files
elif [ $1 == "-d" ];
then
if [ -f "$2" ];
then
openssl aes-256-cbc -a -d -salt -in "$2" -out "$2.decrypt"
else
echo "This file does not exist!"
fi
#show help
elif [ $1 == "--help" ];
then
echo "This software uses openssl for encrypting files with the aes-256-cbc cipher"
echo "Usage for encrypting: ./encrypt -e [file]"
echo "Usage for decrypting: ./encrypt -d [file]"
else
echo "This action does not exist!"
echo "Use ./encrypt --help to show help."
fi
只需将其保存在问题chmod + x文件中的文本文件中以使其可执行即可。之后,使用./filename --help获取信息。
-a
不必要的使用将不必要地使输出文件膨胀。