Windows 上的哪个库用于在使用 TLS/SSL 时加密和解密消息?

发布于 2024-11-05 06:45:57 字数 50 浏览 0 评论 0原文

我想写一个小型的即时通讯客户端。如果您还可以提供一些文献/示例代码的链接,那就太好了。

I wish to write a small IM client. If you can also provide links to some literature/sample code that would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静若繁花 2024-11-12 06:45:57

如果您正在编写本机代码,您可能需要查看 SSPI 和特别是 SChannel

Schannel 安全包提供对四种安全协议的访问:

  • 传输层安全性 (TLS 1.2)
  • 传输层安全性 (TLS 1.1)
  • 传输层安全性 (TLS 1.0)
  • 安全套接字层 (SSL 3.0)
  • 安全套接字层 (SSL 2.0)

让我们忽略他们无法数数的时刻:-)

If you're writing native code, you're probably going to want to look at SSPI and specifially SChannel:

The Schannel security package provides access to four security protocols:

  • Transport Layer Security (TLS 1.2)
  • Transport Layer Security (TLS 1.1)
  • Transport Layer Security (TLS 1.0)
  • Secure Sockets Layer (SSL 3.0)
  • Secure Sockets Layer (SSL 2.0)

Let's ignore for the moment that they can't count :-)

长发绾君心 2024-11-12 06:45:57

根据语言/平台(.NET、Win32 API 等),有多种可用选项。

上面已经提到了SChannel。然后您可以使用OpenSSL。另外,根据您的平台,您可以使用我们的 SSLBlackbox

Depending on the language / platform (.NET, Win32 API etc.) there are several options available.

SChannel has been mentioned above. Then you can use OpenSSL. Also depending on your platform you can use our SSLBlackbox.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文