I upgraded my Ubuntu 19.10 to the latest 20.04. After this process, doing HTTP calls passing a certificate gives the following error:
error: Error: [('SSL routines', 'SSL_CTX_use_certificate', 'ca md too weak')]
Executing
openssl x509 -in certificate.pem -noout -text | grep 'Signature Algorithm'
returns the following:
sha1WithRSAEncryption
The OpenSSL version installed is 1.1.1f
Can this behaviour overridden? If not, is it possible to downgrade to a compatible openssl version?
curl
andwget
SSL errors solved by following the instructions here: https://askubuntu.com/questions/1233186/ubuntu-20-04-how-to-set-lower-ssl-security-level It did not fix mypip
SSL error. – mankoff May 05 '20 at 15:09