SYSLIB0048:RSA.EncryptValue 和 RSA.DecryptValue 已过时
从 .NET 8 开始,以下方法已过时。 在代码中调用这些方法会在编译时生成警告 SYSLIB0048
。
- System.Security.Cryptography.RSA.EncryptValue(Byte[])
- System.Security.Cryptography.RSA.DecryptValue(Byte[])
- System.Security.Cryptography.RSACryptoServiceProvider.EncryptValue(Byte[])
- System.Security.Cryptography.RSACryptoServiceProvider.DecryptValue(Byte[])
解决方法
请改用 RSA.Encrypt 和 RSA.Decrypt。
抑制警告
如果必须使用已过时的 API,可在代码或项目文件中禁止显示警告。
若只想抑制单个冲突,请将预处理器指令添加到源文件以禁用该规则,然后重新启用警告。
// Disable the warning.
#pragma warning disable SYSLIB0048
// Code that uses obsolete API.
// ...
// Re-enable the warning.
#pragma warning restore SYSLIB0048
若要禁止显示项目中的所有 SYSLIB0048
警告,请将属性 <NoWarn>
添加到项目文件。
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
...
<NoWarn>$(NoWarn);SYSLIB0048</NoWarn>
</PropertyGroup>
</Project>
有关详细信息,请参阅取消警告。