SChannel 支持 TLS 1.3 吗?需要有关 C/C 中客户端/服务器示例程序的帮助++使用 SChannel 实施 TLS 1.3?
SChannel 支持 TLS 1.3 吗?我需要有关使用 SChannel 实现 TLS 1.3 的 C/C++ 示例客户端/服务器程序的帮助。
我发现 SChannel.h
将 SP_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.