我正在尝试用 c# 制作一个加密系统。这是加密的代码。
public static void EncryptFile(string inFile, string outFile, string @inkey)
{
try
{
UnicodeEncoding ue = new UnicodeEncoding();
byte[] key = ue.GetBytes(inkey);
FileStream fsEncrypt = new FileStream(outFile, FileMode.Create);
RijndaelManaged rmCrypto = new RijndaelManaged();
CryptoStream cs = new CryptoStream(fsEncrypt, rmCrypto.CreateEncryptor(key, key), CryptoStreamMode.Write);
FileStream fsIn = new FileStream(inFile, FileMode.Open);
int data;
while((data=fsIn.ReadByte()) != 1){
cs.WriteByte((byte)data);
}
fsIn.Close(); cs.Close(); fsEncrypt.Close();
}
catch(Exception ex)
{
MessageBox.Show(ex.Message, "Fail to encrypt", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
现在,这段代码每次运行时都会抛出异常,说
指定的初始化向量 (IV) 与此算法的块大小不匹配
我读过关于这个的其他讨论,说字节数有问题(我传递给这个函数的密钥长度是 255)。但我已经尝试让密钥只有 16 个字节,但仍然无法正常工作。
经过一些故障排除后,我发现这部分:
CryptoStream cs = new CryptoStream(fsEncrypt, rmCrypto.CreateEncryptor(key, key), CryptoStreamMode.Write);
抛出异常。我不知道为什么。任何人都可以帮忙吗?