Re: [asio-users] Native Windows ssl::stream support
Brought to you by:
chris_kohlhoff
From: Vinnie F. <vin...@gm...> - 2020-07-21 16:09:12
|
On Tue, Jul 21, 2020 at 5:45 AM Kasper Laudrup <la...@st...> wrote: > If I could get something like the example SSL client to work with native > SSL support on Windows, even if the solution was full of hacks and far > from a working solution, then I could take it from there and see if I > could make it a real boost library. Well, I still think it is worth discussing with other folks, as this can only help to inform your efforts. How does Windows TLS work? Is it buffer-oriented? Or does Windows control the socket? The answer to this question will have dramatic influence on how your code is designed. If Windows wants to control the socket, it will require more finesse and understanding of Asio to author an I/O object that implements Windows TLS. Thanks |