giampaolo / pyftpdlib

Extremely fast and scalable Python FTP server library
MIT License
1.65k stars 265 forks source link

Remove `pyopenssl` dep and with `ssl` module instead #634

Open giampaolo opened 2 weeks ago

giampaolo commented 2 weeks ago

We originally used pyopenssl instead of stdlib ssl because ssl module lacked server support on Python 2.X (or something like that, I forgot). This seems to be the case though, as urllib3 did the same: https://urllib3.readthedocs.io/en/2.2.0/reference/contrib/pyopenssl.html Removing pyopenssl would be good because it would be 1 less third-party dep we depend on. This probably have to happen after we remove Python 2.7 support though (https://github.com/giampaolo/pyftpdlib/issues/629).