I'm working with python3.5
, the module ssl
's OPENSSL_VERSION
is old
python -c "import ssl; print(ssl.OPENSSL_VERSION)"
# OpenSSL 1.0.0-fips 29 Mar 201
How could I update ssl
's version to 1.0.2+
?
I'm working with python3.5
, the module ssl
's OPENSSL_VERSION
is old
python -c "import ssl; print(ssl.OPENSSL_VERSION)"
# OpenSSL 1.0.0-fips 29 Mar 201
How could I update ssl
's version to 1.0.2+
?