Closed GoogleCodeExporter closed 9 years ago
Currently, mongoose sends MG_SSL_INIT event when SSL is initializing, passing
SSL context. Callback is called, then PEM files are loaded.
I can slightly change the logic: if callback returns non-NULL, then PEM files
would not be loaded by mongoose. It would be a user responsibility to load
them. User might load PEM files from memory in this case.
Would that be sufficient, or you'd like mongoose to load PEM files from memory?
In this case, what interface would you like to see?
Original comment by valenok
on 12 Aug 2012 at 9:12
I've done the aforementioned change.
I had to do the same thing, by the way -- to load PEM file from memory.
I've decided that the easiest thing to do is to create a temporary file, write
PEM into it, start mongoose, and remove the file. Works well for me, you might
want to do the same.
Original comment by valenok
on 22 Sep 2012 at 10:33
Thanks for your response and execuse me for delay!
I adapted latest version and everything works.
I use code from http://stackoverflow.com/a/3812457 to load certificate
from string constant in my code.
However, I made some changes to mongoose so user_data will be passed to
init_ssl, for obvious reasons.
Original comment by rusla...@gmail.com
on 27 Feb 2013 at 7:14
Attachments:
Original issue reported on code.google.com by
rusla...@gmail.com
on 12 Aug 2012 at 8:43