使用 Windows.Security.Cryptography.RSACryptoServiceProvider;在

本文关键字:RSACryptoServiceProvider Cryptography Windows Security 使用 | 更新日期: 2023-09-27 18:35:15

我在命名空间Windows.Security.Cryptography、Windows Phone 8.1 或通用应用程序和应用商店应用程序中找不到库RSACryptoServiceProvider

使用 Windows.Security.Cryptography.RSACryptoServiceProvider;在

RSACryptoServiceProvider

Windows 运行时应用中不可用的 System.Security.Cryptography 命名空间的一部分。应使用Windows.Security.Cryptography.Core命名空间中的类AsymmetricKeyAlgorithmProvider

AsymmetricKeyAlgorithmKeyProvider provider=AsymmetricKeyAlgorithmProvider.OpenAlgorithm("<algorithm-name>");

<algorithm-name>参数可以是AsymmetricAlgorithmNames枚举中的任何一个值。RSA 有多种变体。 http://msdn.microsoft.com/en-us/library/windows/apps/windows.security.cryptography.core.asymmetricalgorithmnames.aspx

相关文章:
  • 没有找到相关文章