SChannel 支持 TLS 1.3 吗?需要有关 C/C 中客户端/服务器示例程序的帮助++使用 SChannel 实施 TLS 1.3?

发布于 2025-01-10 19:41:32 字数 452 浏览 3 评论 0原文

SChannel 支持 TLS 1.3 吗?我需要有关使用 SChannel 实现 TLS 1.3 的 C/C++ 示例客户端/服务器程序的帮助。

我发现 SChannel.hSP_PROT_TLS1_3_CLIENT 定义为 0x00002000 等。 但是 SCHANNEL_CRED 没有提及任何有关 TLS 1.3 的内容。

我无法在互联网上找到任何其他信息来记录 SChannel 是否支持 TLS 1.3。

Does SChannel support TLS 1.3 ? I need help with regard to example client/server programs in C/C++ for implementing TLS 1.3 using SChannel.

I found SChannel.h defines SP_PROT_TLS1_3_CLIENT as 0x00002000, etc.
But the grbitEnabledProtocols field of SCHANNEL_CRED does not mention anything about TLS 1.3.

I was unable to find any other information on the Internet to document whether SChannel supports TLS 1.3 or not.

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

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

发布评论

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

评论(1

秋凉 2025-01-17 19:41:32

SCH_CREDENTIALS - Win32 应用 | Microsoft Docs

SChannel 支持 TLS1.3,为了在 schannel 中使用 TLS 1.3,您应该将 SCH_CREDENTIALS 结构与 AcquireCredentialsHandle() 结合使用。

SCHANNEL_CRED 结构已被弃用。从 Windows 10, 1809(2018 年 10 月更新)开始,您应该使用 SCH_CREDENTIALS。

SCH_CREDENTIALS - Win32 apps | Microsoft Docs

SChannel support TLS1.3, In order to use TLS 1.3 with schannel, you should use the SCH_CREDENTIALS structure with AcquireCredentialsHandle().

The SCHANNEL_CRED structure has been deprecated. Starting with Windows 10, 1809 (October 2018 Update), you should use SCH_CREDENTIALS.

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