From 32ebf6744d1edceebe31c3f56dceda87b9682bec Mon Sep 17 00:00:00 2001 From: =?utf8?q?Th=C3=A9r=C3=A8se=20Godefroy?= Date: Tue, 27 Jul 2021 17:50:42 +0200 Subject: [PATCH] en/index: consistently use [keyID] in command lines. --- en/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/en/index.html b/en/index.html index 8ec8a7c4..85108a66 100644 --- a/en/index.html +++ b/en/index.html @@ -412,8 +412,8 @@ takes a few hours for them to match each other when a new key is uploaded.

Use the following command to export your secret key so you can import it into your email client at the next step. To avoid getting your key compromised, store this in a safe place, and make sure that if it is transferred, it is done so in a trusted way. Exporting your keys can be done with the following commands:

-$ gpg --export-secret-keys -a [keyid] > my_secret_key.asc
-$ gpg --export -a [keyid] > my_public_key.asc +$ gpg --export-secret-keys -a [keyID] > my_secret_key.asc
+$ gpg --export -a [keyID] > my_public_key.asc


@@ -472,8 +472,8 @@ your key as a file on your computer.

Use the following commands to transfer your keys. To avoid getting your key compromised, store it in a safe place, and make sure that if it is transferred, it is done so in a trusted way. Importing and exporting a key can be done with the following commands:

-$ gpg --export-secret-keys -a keyid > my_private_key.asc
-$ gpg --export -a keyid > my_public_key.asc
+$ gpg --export-secret-keys -a [keyID] > my_private_key.asc
+$ gpg --export -a [keyID] > my_public_key.asc
$ gpg --import my_private_key.asc
$ gpg --import my_public_key.asc

-- 2.25.1