Answers for "gpg how to import private key"

1

gpg get private key

# Export Public Key
# This command will export an ascii armored version of the public key:
gpg --output public.pgp --armor --export username@email
# Export Secret Key
# This command will export an ascii armored version of the secret key:
gpg --output private.pgp --armor --export-secret-key username@email
Posted by: Guest on September-19-2021
0

How to export a GPG private key to a file

gpg --output private.pgp --armor --export-secret-key username@email
Posted by: Guest on August-27-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language