Skip to content

Instantly share code, notes, and snippets.

@ianatha
Created December 4, 2014 23:47
Show Gist options
  • Save ianatha/efdf44005537fde1fb40 to your computer and use it in GitHub Desktop.
Save ianatha/efdf44005537fde1fb40 to your computer and use it in GitHub Desktop.
Backup Secret Keys to QR Codes
gpg --export-secret-keys --armor | split -b 1792
for i in x*; do echo $i; cat $i | qrencode -o $i.png; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment