AV-98-fork

A fork of https://tildegit.org/solderpunk/AV-98
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 1bc6a69bb9f6e2eec106cdaff11dfb018dd8a73f
parent 8d7715ee4bc6ea96e6cc7a7aef28aff4d296d806
Author: Solderpunk <solderpunk@sdf.org>
Date:   Thu,  4 Jun 2020 16:21:11 +0200

Permit use of ECDSA.

Diffstat:
Mav98.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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