Skip to content

Instantly share code, notes, and snippets.

@rxw1
Created March 14, 2015 15:12
Show Gist options
  • Save rxw1/d14b488cac35d4f2a24d to your computer and use it in GitHub Desktop.
Save rxw1/d14b488cac35d4f2a24d to your computer and use it in GitHub Desktop.
GPG stuff
gpg-export-my-key() {
gpg --armor --export $EMAIL
}
gpg-encrypt-eof() {
cat << EOF | gpg --encrypt --armor -r $EMAIL | curl -sF 'f:1=<-' ix.io | pbcopy
}
gpg-decrypt-paste() {
pbpaste | gpg --decrypt
}
gpg-decrypt-url() {
curl $(pbpaste) | gpg --decrypt
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment