在 Debian / Ubuntu Linux 下, 要使用 gpg 來對檔案加密, 要怎麼做?
GPG 加密
- gpg -c docfile.txt # 預設使用 CAST5 加密 # 指定加密方式 gpg -c --cipher-algo AES256 docfile.txt
- 輸入兩次密碼 => 產出 docfile.txt.gpg (加密)
- rm docfile.txt # 記得將原始檔砍掉
GPG 解密
- gpg docfile.txt.gpg # 若有指定加密方式 gpg -d --cipher-algo aes256 docfile.txt.gpg
- 輸入密碼 => 產出 docfile.txt (解密)