我正在尝试在C#中执行AES 256位CBC加密。我正在使用此页面中的示例键/ iv字符串:http://pic.dhe.ibm.com/infocenter/initiate/v9r5/topic/com.ibm.einstall.doc/topics/t_einstall_GenerateAESkey.html
然而,当我运行下面的函数时,我收到错误说"指定的密钥不是此算法的有效大小。"当试图设置cipher.Key。我能够在node.js项目中使用这个key / iv组合,但我试图将它移植到C#无济于事。我在下面做错了什么?
static void Main(string[] args)
{
string keyString = "B374A26A71490437AA024E4FADD5B497FDFF1A8EA6FF12F6FB65AF2720B59CCF";
string ivString = "7E892875A52C59A3B588306B13C31FBD";
byte[] key = Encoding.UTF8.GetBytes(keyString);
byte[] iv = Encoding.UTF8.GetBytes(ivString);
Console.WriteLine("Key is " + key.Length + " bytes.");
using (RijndaelManaged cipher = new RijndaelManaged())
{
cipher.Mode = CipherMode.CBC;
cipher.KeySize = 256;
cipher.BlockSize = 128;
cipher.Key = key;
cipher.IV = iv;
// Create a decrytor to perform the stream transform.
ICryptoTransform encryptor = cipher.CreateEncryptor(cipher.Key, cipher.IV);
}
Console.WriteLine("Success!");
Console.ReadKey();
}
答案 0 :(得分:6)
该密钥字符串长度为64个字符,即512位,而不是256个。看起来该字符串包含32个十六进制值,但您需要这样做:
byte[] key = new byte[] { 0xB3, 0x74, 0xA2, 0x6A, 0x71, 0x49, 0x04 etc. };
答案 1 :(得分:0)
AES根据秘密密钥大小提供以下位。
16个长度的密钥大小,然后适用AES-128位。 24个长度的密钥大小,然后适用AES-192位。 如果密钥长度为32位,则适用AES-256。
密钥大小:128、192或256位 回合:10、12或14(取决于密钥大小)