Skip to content

Instantly share code, notes, and snippets.

@zenoando
Created June 18, 2018 04:05
Show Gist options
  • Save zenoando/c4d219bfbf01eb10141b40d1563c80b9 to your computer and use it in GitHub Desktop.
Save zenoando/c4d219bfbf01eb10141b40d1563c80b9 to your computer and use it in GitHub Desktop.
GPG Cheatsheet

Generate Key

gpg --full-generate-key

List Keys

gpg -K --keyid-format long --with-colons --with-fingerprint

Export Public Key (Binary Format)

gpg --export -a <key-id> > gpg-key.pub.asc

Export Public Key (ASCII Format)

gpg --armor --export -a <key-id> > gpg-key.pub

Export Private Key (Binary Format)

gpg --export-secret-keys -a <key-id> > gpg-key.priv.asc

Export Private Key (ASCII Format)

gpg --armor --export-secret-keys -a <key-id> > gpg-key.priv.pub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment