0

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

1 回答 1

1

是的-您链接到的页面包含EncryptStringToBytes_Aes示例代码中的方法-但是由于某种原因,您在复制它时省略了它。只是在Demo方法之下...

static byte[] EncryptStringToBytes_Aes(string plainText, byte[] Key, byte[] IV)
{
    // Check arguments.
    if (plainText == null || plainText.Length <= 0)
        throw new ArgumentNullException("plainText");
    ...
}
于 2013-06-28T08:59:10.103 回答