SSL api for winsock?

后端 未结 2 567
轻奢々
轻奢々 2020-12-21 12:23

I have windows c++ project. Need to implement both ssl client and server on top of existing winsock code.

I tried with openssl but it seems too messy. I assume there

2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-21 12:48

    You can use Windows built-in SSL stuff -- SChannel . Searching Google fo "SChannel SSL" would give you plenty of information (though SChannel itself is poorly documented and not easy to comprehend).

    On the other hand, OpenSSL is not messy once you study the source code of some project, that uses OpenSSL.

提交回复
热议问题