我想使用非对称加密算法加密和解密字符串,我希望在加密和解密函数中传递不同的密钥。
我的代码如下:
public ActionResult Encrypt(string clearText)
{
string EncryptionKey = "ABKV2SPBNI99212";
byte[] clearBytes = Encoding.Unicode.GetBytes(clearText);
using (Aes encryptor = Aes.Create())
{
Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(EncryptionKey, new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
encryptor.Key = pdb.GetBytes(32);
encryptor.IV = pdb.GetBytes(16);
using (MemoryStream ms = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateEncryptor(), CryptoStreamMode.Write))
{
cs.Write(clearBytes, 0, clearBytes.Length);
cs.Close();
}
clearText = Convert.ToBase64String(ms.ToArray());
}
}
Decrypt(clearText);
return View(clearText);
}
public string Decrypt(string cipherText)
{
string EncryptionKey = "MAKV2SPBNI99212";
byte[] cipherBytes = Convert.FromBase64String(cipherText);
using (Aes encryptor = Aes.Create())
{
Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(EncryptionKey, new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
encryptor.Key = pdb.GetBytes(32);
encryptor.IV = pdb.GetBytes(16);
using (MemoryStream ms = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateDecryptor(), CryptoStreamMode.Write))
{
cs.Write(cipherBytes, 0, cipherBytes.Length);
cs.Close();
}
cipherText = Encoding.Unicode.GetString(ms.ToArray());
}
}
return cipherText ;
}
这是我使用链接发送值的加密函数 如下
<a href="@Url.Action("Encrypt", "Home", new {@clearText="5"})">Bid Buddy</a>
这里我想发送不同的键值,如图所示。
答案 0 :(得分:2)
您的encrpt / decrpyt
键不同,导致您收到此错误。
填充无效且无法删除
确保encrpt / decrpt
键 相同。
答案 1 :(得分:2)
AES是对称分组密码。如果在加密期间显示相同的密钥,则解密仅有效。没有办法解决这个问题。
您还有一个加密哈希函数。所有散列函数都有冲突,但对于像你这样的加密散列函数来说,对它们的利用可以忽略不计。因此,找到映射到相同密钥的两个密码(这会使其技术上不对称)成本太高。
您需要生成公钥 - 私钥对。执行此操作的选项是例如RSA。然后,您将使用随机AES密钥加密数据,并使用RSA公钥加密此AES密钥。这称为hybrid encryption。