Export Public Key
gpg --output tobstarr.gpg --armor --export tobstarr@gmail.com
Import Public Key (e.g. from keybase)
echo "some key" | gpg --import // e.g. from keybase
Public Key from keybase
curl -Ls https://keybase.io/tobstarr/key.asc | gpg --import
List Keys
gpg -k
Encrypt a stream without confirmation
cat some.file | gpg -e -a --trust-model always --recipient tobstarr@gmail.com
Be more quiet
gpg --no-tty
Generate a new key
gpg --gen-key
List recipients of an encrypted message
gpg --list-packets < file.gpg
Display Fingerprint
gpg --fingerprint <key_name> | grep "Key fingerprint" | tr -s " " | cut -d ' ' -f 5-
Encrypt with hidden recipients
gpg -R
Encrypt to self by default
Add default-recipient-self
to $HOME/.gnupg/gpg.conf
git diff of encrypted files
see http://magit.vc/manual/magit/How-to-show-diffs-for-gpg_002dencrypted-files_003f.html
git config --global diff.gpg.textconv "gpg --no-tty --decrypt"
# it seems we cannot glob for two extensions in one line :(
cat > .gitattributes <<EOF
*.gpg filter=gpg diff=gpg
*.asc filter=gpg diff=gpg
EOF