Browse Source

Adding export_gpg_key

master
Nate Bohman 5 years ago
parent
commit
93339c964d
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      export_gpg_key.sh

+ 13
- 0
export_gpg_key.sh View File

#!/usr/bin/env bash

# Export private GPG key
gpg --export-secret-keys -a C10546A54ABA1CE5
#-----BEGIN PGP PRIVATE KEY BLOCK-----
#...
#-----END PGP PRIVATE KEY BLOCK-----

# Export public GPG key
gpg --export -a C10546A54ABA1CE5
#-----BEGIN PGP PUBLIC KEY BLOCK-----
#...
#-----END PGP PUBLIC KEY BLOCK-----

Loading…
Cancel
Save