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;
}
}
}