davidmoreno / onion

C library to create simple HTTP servers and Web Applications.
http://www.coralbits.com/libonion/
Other
2.02k stars 250 forks source link

How to add support for SSLv3? #240

Open alexe100 opened 5 years ago

alexe100 commented 5 years ago

I have a device with old OS and only SSLv3 is available and it seems that onion/gnutls lib does not support it anymore. Can I add it by hand? how? Thanks

Alex

davidmoreno commented 5 years ago

All SSL support right now is at src/https.c and src/https.h. You would have to reimplement them using openssl or your library of choice.

If you do it, and its possible to choose one implementation or another via a compilation flag, please consider contributing back the code to onion.

Regards, David.