SharpAESCrypt加密和解密字符串

时间:2016-08-18 14:21:05

标签: c# encryption cryptography aes

我需要实施cross platform encryption and decryption的要求 所以,我已经做了一些谷歌搜索并找到了这个链接

因此,我计划使用SharpAESCrypt并使用最新版本1.3.1

现在,我的问题是:我能够通过转换为流来加密字符串,但无法使用相同的密码对其进行解密。

我找到了一些代码here并且已经实现了相同的功能。

我的示例代码:

加密

protected void btnEncrypt_Click(object sender, EventArgs e)
    {
        try
        {
            byte[] byteArray = Encoding.UTF8.GetBytes(txtInput.Text.Trim());
            Byte[] newByteArray;
            using (MemoryStream plainText = new MemoryStream(byteArray))
            {
                using (MemoryStream encryptedData = new MemoryStream())
                {
                    SharpAESCrypt.SharpAESCrypt.Encrypt("ABCD@123", plainText, encryptedData);
                    newByteArray = encryptedData.ToArray();
                }
            }
            string FinalText = Convert.ToBase64String(newByteArray);
        }
        catch (Exception ex)
        {
        }
    }

解密

protected void btnDecrypt_Click(object sender, EventArgs e)
    {
        try
        {
            byte[] byteArray = Encoding.UTF8.GetBytes(txtOutput.Text.Trim());
            Byte[] newByteArray;

            string output = "";
            using (MemoryStream plainText = new MemoryStream(byteArray))
            {
                using (MemoryStream encryptedData = new MemoryStream())
                {
                    SharpAESCrypt.SharpAESCrypt.Decrypt("ABCD@123", plainText, encryptedData);
                    newByteArray = encryptedData.ToArray();
                }
            }
            //string FinalText = Convert.ToBase64String(newByteArray);
            string FinalText = System.Text.Encoding.UTF8.GetString(byteArray);
        }
        catch (Exception ex)
        {
        }
    }

我收到了Invalid header marker这样的错误。任何人都可以让我知道我正在做的错误吗?

注意:需要有关最佳跨平台(iOS,Android和C#)加密和解密库的建议。

1 个答案:

答案 0 :(得分:4)

在Decrypt方法中,您需要使用Convert.FromBase64String而不是Encoding.UTF8.GetBytes重新构建加密的字节数组。使用UTF8重构解密字符串的最后一部分是正确的。