summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Heard <jasonpheard@gmail.com>2015-11-15 16:05:48 -0700
committerJason Heard <jasonpheard@gmail.com>2015-11-15 16:05:48 -0700
commit32afb9c5a11a4b1127dc63fae9b56154056ebab2 (patch)
tree9412d5ef7f0b7df33286d30b0eb39188014a9378
parentaa82bb4f02e00837e90397583fe13757a228b61a (diff)
Only mention user key for revoke
-rw-r--r--README.md5
-rw-r--r--revoke_crt.py5
2 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index 9f59e65..f52d33c 100644
--- a/README.md
+++ b/README.md
@@ -381,10 +381,9 @@ user@hostname:~$
user@hostname:~$ python revoke_crt.py --public-key user.pub domain.crt
Reading pubkey file...
Found public key!
-STEP 1: You need to sign a file (replace 'auth.key' with your user private key
-or the certificate private key).
+STEP 1: You need to sign a file (replace 'user.key' with your user private key)
-openssl dgst -sha256 -sign auth.key -out revoke_Z5Qxj3.sig revoke_TKSK9w.json
+openssl dgst -sha256 -sign user.key -out revoke_Z5Qxj3.sig revoke_TKSK9w.json
Press Enter when you've run the above command in a new terminal window...
Requesting revocation...
diff --git a/revoke_crt.py b/revoke_crt.py
index ccfce0a..4d24db9 100644
--- a/revoke_crt.py
+++ b/revoke_crt.py
@@ -71,10 +71,9 @@ def revoke_crt(pubkey, crt):
# Step 3: Ask the user to sign the revocation request
sys.stderr.write("""\
-STEP 1: You need to sign a file (replace 'auth.key' with your user private key¬
-or the certificate private key).
+STEP 1: You need to sign a file (replace 'user.key' with your user private key)
-openssl dgst -sha256 -sign auth.key -out {} {}
+openssl dgst -sha256 -sign user.key -out {} {}
""".format(crt_file_sig_name, crt_file_name))