diff options
author | Jason Heard <jasonpheard@gmail.com> | 2015-11-17 10:26:37 -0700 |
---|---|---|
committer | Jason Heard <jasonpheard@gmail.com> | 2015-11-17 10:26:37 -0700 |
commit | 9619825d522d91cf12bf0e0dc80345aca03d0c48 (patch) | |
tree | c7b086070406b89c184fba97c1cfe102e0bd0a19 /revoke_crt.py | |
parent | 32afb9c5a11a4b1127dc63fae9b56154056ebab2 (diff) |
Address review feedback
Diffstat (limited to 'revoke_crt.py')
-rw-r--r-- | revoke_crt.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/revoke_crt.py b/revoke_crt.py index 4d24db9..6ed3ed9 100644 --- a/revoke_crt.py +++ b/revoke_crt.py @@ -7,6 +7,7 @@ def revoke_crt(pubkey, crt): """Use the ACME protocol to revoke an ssl certificate signed by a certificate authority. + :param string pubkey: Path to the user account public key. :param string crt: Path to the signed certificate. """ #CA = "https://acme-staging.api.letsencrypt.org" @@ -116,7 +117,7 @@ for your private keys. It will print out commands that you need to run with your private key, which gives you a chance to review the commands instead of trusting this script. -NOTE: YOUR ACCOUNT KEY NEEDS TO BE THE SAME KEY USED TO ISSUE THE CERTIFICATE. +NOTE: YOUR PUBLIC KEY NEEDS TO BE THE SAME KEY USED TO ISSUE THE CERTIFICATE. Prerequisites: * openssl |