Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/acme
diff options
context:
space:
mode:
authorMads Jensen <mje@inducks.org>2022-02-04 04:34:04 +0300
committerGitHub <noreply@github.com>2022-02-04 04:34:04 +0300
commitfe0c0dc3ae6c25c6087e51717a223f38a9b23d2f (patch)
tree21b0a16c784ed1a4503e81a5224634c432455739 /acme
parent5b17a18355222c511b3d5e4442f01520765e8b8f (diff)
Add support for revoking ecdsa keys without --cert-name. (#8725)
* Add support for revoking ecdsa keys without --cert-name. Co-Authored-By: commonism <commonism@users.noreply.github.com> * Move alg to acme_client.ClientNetwork instantiating in acme_from_config_key * Fix argument for RS256/ES256 * Support also ES384 and ES512 signing algorithms.
Diffstat (limited to 'acme')
-rw-r--r--acme/acme/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/acme/acme/client.py b/acme/acme/client.py
index 7e87e7474..aacbbc263 100644
--- a/acme/acme/client.py
+++ b/acme/acme/client.py
@@ -1076,7 +1076,7 @@ class ClientNetwork:
logger.debug('JWS payload:\n%s', jobj)
kwargs = {
"alg": self.alg,
- "nonce": nonce
+ "nonce": nonce,
}
if acme_version == 2:
kwargs["url"] = url