From fe9cb6ecce2341cb57623beeb5dec3aa8e7819f3 Mon Sep 17 00:00:00 2001 From: grahovam Date: Mon, 21 Mar 2016 19:22:09 +0100 Subject: [PATCH] Update README.md Export keys in ascii format --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad8a4b7..02c9e3d 100644 --- a/README.md +++ b/README.md @@ -138,16 +138,16 @@ You will be asked to enter the name of the backup. If your private gpg key has a #### Q: How do I generate a GPG key? -Create a key with ```gpg --gen-key``` and export them. +Execute the following: ```gpg --gen-key``` #### Q: How do I export a GPG Key from my key chain, so that it can be used in a container volume? ```bash -gpg --output ~/path/to/volume/myKey.gpg.pub --export myBackup@myDomain.com +gpg --output ~/path/to/volume/myKey.gpg.pub --export -a myBackup@myDomain.com -gpg --output ~/path/to/volume/myKey.gpg --export-secret-keys myBackup@myDomain.com +gpg --output ~/path/to/volume/myKey.gpg --export-secret-keys -a myBackup@myDomain.com ``` #### Q: What can I do if I generate a GPG Key and it tells me I need more entropy?