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>
如需詳細資訊,請參閱隱藏警告。