I used the pre-build static libs of OpenSSL 1.0, but it makes my binary too large (increase its size by about 800Kb in release mode).
I do not need most of the OpenSSL functions, such as BIO, I use my own sockets, so in the code I use only a couple of calls SSL_XXXXXXXXX (SSL_accept (3) or SSL_connect (3), SSL_read (3) and SSL_write (3))
My only requirement is SSLv2 / v3 support with winsock on windows and linux sockets for client and server sides (for C ++)
Is there a way to make OpenSSL a lot smaller (maybe compile it myself) or, in the worst case, any other good, but more transparent SSL library that meets my requirements? Lib must be linked statically.
thank you
source share