I want to use SSL in my cross platform program. I decided to use OpenSSL.
I have OpenSSL installed, and at this point I am looking through the code and documentatio
The very rough guide is:
SSL_CTX with SSL_CTX_new();SSL with SSL_new();SSL to that of your network connection with SSL_set_fd();Thereafter use SSL_read() and SSL_write() to read and write from the connection, and finish with SSL_shutdown(). The SSL_CTX can be re-used to create SSL objects for many simultaneous sessions.