From 342b4341a82d463e22d595126722b5e6d7346127 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 31 May 2020 00:06:13 -0400 Subject: acmens.py: Update main. --- acmens.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acmens.py b/acmens.py index 25f06a7..23184a2 100644 --- a/acmens.py +++ b/acmens.py @@ -351,12 +351,12 @@ $ openssl genrsa -aes256 4096 > user.key $ openssl rsa -in user.key -pubout > user.pub $ openssl genrsa -aes256 4096 > domain.key $ openssl req -new -sha256 -key domain.key -subj "/CN=example.com" > domain.csr -$ python3 acmens.py --account-key user.key --email user@example.com --csr domain.csr > signed.crt +$ acmens --account-key user.key --email user@example.com --csr domain.csr > signed.crt -------------- Example: Revoking a signed certificate: -------------- -$ python3 acmens.py --revoke --account-key user.key --crt domain.crt +$ acmens --revoke --account-key user.key --crt domain.crt -------------- """); parser.add_argument("--revoke", action="store_true", help="Revoke a signed certificate") -- cgit v1.2.3