gpt4 book ai didi

c# - 如何在运行时将安全协议(protocol)更新为 TLS 1.2

转载 作者:太空宇宙 更新时间:2023-11-03 14:45:35 24 4
gpt4 key购买 nike

无法使用在 Global.asax 的 Application_Start 中调用的以下代码更新安全协议(protocol),(可能是因为 CAS 通信在到达这行代码之前出现故障)

ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;

我的 .net 应用程序是在 4.0 框架中开发的,预计会使用早于 TLS 1.2 的安全协议(protocol)。由于 TLS 问题,我的 CAS 身份验证无法重定向到我的应用程序。为了解决这个问题,我确实在 web.config 中进行了有针对性的框架更改,如下所示。

<httpRuntime requestValidationMode="2.0" targetFramework="4.6" />

但上述解决方案会导致不同的问题。所以现在我想弄清楚的是通过使用安全协议(protocol)更新到 1.2 来解决我的 CAS 问题。请帮助我如何处理我的情况。

最佳答案

如果您的系统上安装了 .NET 4.5 或更高版本,您发布的代码:ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072; 应该可以在不更改您的应用程序所针对的 .NET 框架的情况下工作。

如果您无法升级系统上的 .NET 框架,则需要将 SchUseStrongCrypto 和 SystemDefaultTlsVersions 注册表项设置为 1。

发件人:https://learn.microsoft.com/en-us/dotnet/framework/network-programming/tls

For .NET Framework 3.5 - 4.5.2 and not WCF

We recommend you upgrade your app to .NET Framework 4.7 or later versions. If you cannot upgrade, take the following steps. At some point in the future, your application may fail until you upgrade to .NET Framework 4.7 or later versions.

Set the SchUseStrongCrypto and SystemDefaultTlsVersions registry keys to 1. See Configuring security via the Windows Registry. The .NET Framework version 3.5 supports the SchUseStrongCrypto flag only when an explicit TLS value is passed.

关于c# - 如何在运行时将安全协议(protocol)更新为 TLS 1.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54351352/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com