Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Botan 库来建立带有私有证书的 SSL/TLS 连接。不幸的是,我找不到任何使用新 TLS::Client 类的实际示例代码。该文档几乎是 doxygen 文档的一些文本。有没有使用 Botan 的项目,我可以看到,如何建立连接?我不知道使用哪个编译器或操作系统,因为我的项目无论如何都必须独立于平台。
在这一点上使用 api 的最佳开源示例可能是botan命令行工具的使用src/cmd/tls_client.cpp,src/cmd/tls_proxy.cpp它也是服务器端,但另外演示了如何绑定到 asio。
botan
src/cmd/tls_client.cpp
src/cmd/tls_proxy.cpp