I am attempting to get this AES sample code working. However I am not getting anything returned to my cipherText variable. I am not getting errors, just nothing returned. What am I doing wrong here?
public byte[] key { get; set; }
public byte[] IV { get; set; }
public byte[] ciphertext { get; set; }
public string plainText { get; set; }
public byte[] Encrypt(string InputPlaintext)
{
InputPlaintext = "attack at dawn";
using (AesCryptoServiceProvider AESEncryptor = new AesCryptoServiceProvider())
{
////using the AesCryptoServiceProvider to generate the IV and Key
key = AESEncryptor.Key;
IV = AESEncryptor.IV;
ICryptoTransform encryptor = AESEncryptor.CreateEncryptor(key, IV);
using (MemoryStream msEncrypt = new MemoryStream())
{
using (CryptoStream csEncrypt = new CryptoStream(msEncrypt, encryptor, CryptoStreamMode.Write))
{
using (StreamWriter swEncrypt = new StreamWriter(csEncrypt))
{
swEncrypt.Write(InputPlaintext);
ciphertext = msEncrypt.ToArray();
return ciphertext;
}
}
}
};
}
Three options, all of which do the same thing,
Either call csEncrypt.Close()
or use csEncrypt.FlushFinalBlock()
to flush the encrypted data to the memory stream - call it before cipertext = msEncrypt.ToArray()
.
Or, move cipher = msEncrypt.ToArray(); return cipertext;
outside the using block where you're writing to the crypto stream.
Note csEncrypt.Flush()
which might be the first guess does nothing..
public override void Flush()
{
return;
}
来源:https://stackoverflow.com/questions/27334981/aes-encryptor-not-working