mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
hexdigest lower()
This commit is contained in:
parent
8208470395
commit
37574e60e1
1 changed files with 1 additions and 1 deletions
|
|
@ -345,7 +345,7 @@ class TLSSNI01Response(KeyAuthorizationChallengeResponse):
|
|||
def z(self):
|
||||
"""``z`` value used for verification."""
|
||||
return hashlib.sha256(
|
||||
self.key_authorization.encode("utf-8")).hexdigest().encode()
|
||||
self.key_authorization.encode("utf-8")).hexdigest().lower().encode()
|
||||
|
||||
@property
|
||||
def z_domain(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue