Hi, I have a server which would listen on HTTPS using OpenSSL. For this, I have to provide the certificate to use. However, the current implementation uses a filename to be provided to OpenSSL API. I want the cert information to be read from memory, so that I don't have to ship the certificate file opening. I tried to google, but didn't come up with any options. Is is possible? Are there any samples/tutorials already available on WEB which I can go through? Any other pointers/help.
PS: The code is written in C.