seveas / python-hpilo

Accessing the HP iLO XML interface from python
https://seveas.github.io/python-hpilo
Other
321 stars 102 forks source link

Fixes compatibility with OpenSSL v1.1.0+ #248

Closed DSpeichert closed 3 years ago

DSpeichert commented 3 years ago

OpenSSL documentation specifies that DEFAULT cipher must be specified first. Prepending _DEFAULT_CIPHERS (which itself starts with DEFAULT) with something else causes ssl.SSLError as described in #244.

Fixes #244

jhg03a commented 3 years ago

This patch works for me with openssl 1.1.1g and python 3.8.5 on alpine 3.12.

seveas commented 3 years ago

Thanks!