标签: c# cryptography aes win-universal-app windows-10-universal
我试图用简单的程序来加密文件。在我的WPF项目中,我使用了using System.Security.Cryptography;但是当我决定制作通用Windows平台应用程序时,没有SymmetricAlhorithm class。我尝试从.NET 4.5和4.5.1添加引用System.Security.Cryptography,但仍然没有SymmetricAlhorithm类。
using System.Security.Cryptography;
SymmetricAlhorithm class
System.Security.Cryptography
答案 0 :(得分:1)
您需要为UWP使用以下命名空间:
Windows.Security.Cryptography
Windows.Security.Cryptography.Core
链接页面上有一些用法示例,还有here。