Created
September 9, 2018 13:54
-
-
Save lovejavaee/a4764ccbcbf3d21d37e36b9cbbab96ea to your computer and use it in GitHub Desktop.
GPG GNU Privacy Guard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OS X Install GnuPG | |
brew install gpg | |
生成自己的钥匙 | |
gpg --gen-key | |
导出公钥 | |
gpg --armor --output filename --export [UID] | |
导入公钥 | |
gpg --import filename | |
查看已有的钥匙 | |
gpg --list-keys | |
加密备份 | |
gpg -ea -r [UID] filename.tar.gz | |
解密备份 | |
gpg -o filename.tar.gz -d filename.tar.gz.asc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment