Re: [asio-users] ssl server supporting multiple certificates and multiple private keys...
Brought to you by:
chris_kohlhoff
|
From: Christopher K. <ch...@ko...> - 2010-05-31 10:23:59
|
leon zadorin wrote: > I'd like to see if this (as opposed to other alternatives such as > running a second instance of the server or using a paid-for > certificate as opposed to self-signed ones thusly delegating the issue > elsewhere) is possible in boost::asio for the reasons outlined in my > 1st post. Asio lets you access the undlerying openssl data structures (SSL*, SSL_CTX*) via the impl() member functions. If you can find a way to do it with openssl directly then it should (in theory) be possible with Asio too. Cheers, Chris |