Windows Phone 初学者在这里。
我检查了Windows Phone AesManaged Class的 AES 教程,并在我的示例项目中尝试了该示例。
我无法让它工作,它一直给出错误
当前上下文中不存在名称“EncryptStringToBytes_Aes”
非常感谢任何帮助。
代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace myProject.Services
{
class Encrypter
{
public static string encryptMessage(String message)
{
string cryptex = null;
try
{
using (AesManaged theAes = new AesManaged())
{
byte[] encryptedStream = EncryptStringToBytes_Aes(message, theAes.Key, theAes.IV);
cryptex = System.Text.Encoding.UTF8.GetString(encryptedStream, 0, encryptedStream.Count());
}
}
catch (Exception ex)
{
Debug.WriteLine("Error: {0}", ex.Message);
}
return cryptex;
}
}
}