隐藏用户Windows 8中的数据

时间:2014-03-26 11:40:29

标签: c# windows-8 windows-runtime windows-8.1

我需要将一些数据保存到LocalStorage,用户不得修改 - 所以我需要隐藏或编码它。我怎么能这样做?

让我们说当我处于离线模式时,我不想存储赢得的点数,但当我重新上线时,我不想将数据发送到服务器。但是如果用户修改文件,则数据将不正确。

我试过使用,但Windows 8中不存在某些命名空间:

public static string Encrypt(string plainText)
{
    byte[] plainTextBytes = Encoding.UTF8.GetBytes(plainText);

    byte[] keyBytes = new Rfc2898DeriveBytes(PasswordHash, Encoding.ASCII.GetBytes(SaltKey)).GetBytes(256 / 8);
    var symmetricKey = new RijndaelManaged() { Mode = CipherMode.CBC, Padding = PaddingMode.Zeros };
    var encryptor = symmetricKey.CreateEncryptor(keyBytes, Encoding.ASCII.GetBytes(VIKey));

    byte[] cipherTextBytes;

    using (var memoryStream = new MemoryStream())
    {
        using (var cryptoStream = new CryptoStream(memoryStream, encryptor, CryptoStreamMode.Write))
        {
            cryptoStream.Write(plainTextBytes, 0, plainTextBytes.Length);
            cryptoStream.FlushFinalBlock();
            cipherTextBytes = memoryStream.ToArray();
            cryptoStream.Close();
        }
        memoryStream.Close();
    }
    return Convert.ToBase64String(cipherTextBytes);
}

1 个答案:

答案 0 :(得分:3)

该代码适用于标准.NET,但不适用于适用于Windows应用商店的.NET。

Windows商店应用程序的.NET似乎没有System.Security.Cryptography.RijndaelManaged

Windows.Security.Cryptography namespace只有一个类:CryptographicBuffer

您必须使用SymmetricKeyAlgorithmProvider.OpenAlgorithm来选择对称加密算法。 Here您将找到WinRT支持的所有对称算法的列表。