From 1bc6a69bb9f6e2eec106cdaff11dfb018dd8a73f Mon Sep 17 00:00:00 2001 From: Solderpunk Date: Thu, 4 Jun 2020 16:21:11 +0200 Subject: [PATCH] Permit use of ECDSA. --- av98.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/av98.py b/av98.py index d436ba9..f0ebb3b 100755 --- a/av98.py +++ b/av98.py @@ -608,7 +608,7 @@ Slow internet connection? Use 'set timeout' to be more patient.""") context.options |= ssl.OP_NO_SSLv2 # Try to enforce sensible ciphers try: - context.set_ciphers("AESGCM+ECDHE:AESGCM+DHE:CHACHA20+ECDHE:CHACHA20+DHE:!DSS:!ECDSA:!SHA1:!MD5:@STRENGTH") + context.set_ciphers("AESGCM+ECDHE:AESGCM+DHE:CHACHA20+ECDHE:CHACHA20+DHE:!DSS:!SHA1:!MD5:@STRENGTH") except ssl.SSLError: # Rely on the server to only support sensible things, I guess... pass