vote up 0 vote down star

I'm trying to understand why the following code results in the encrypted byte array being 16 bytes if plainText is 8 bytes in length. I expected the result to also be 8 bytes in length?

private static byte[] encrypt(byte[] key, byte[] plainText)
{
    try
    {
        using (MemoryStream ms = new MemoryStream())
        {
            DES des = new DESCryptoServiceProvider() { Key = key, IV = key };

            using (CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(), CryptoStreamMode.Write))
            {
                using(BinaryWriter bw = new BinaryWriter(cs))
                {
                    bw.Write(plainText);
                }
            }

            return ms.ToArray();
        }
    }
    catch (Exception e)
    {
        Logger.LogWarning(e);
        throw e;
    }
}
flag

1 Answer

vote up 3 vote down check

Already answered in: http://stackoverflow.com/questions/1262594/des-encryption-output

link|flag
Thanks. Solution in the other thread fixed it. – Taylor L Sep 18 at 22:31
BTW... I wrote a little app to help me test different encryption algs some time ago... I've posted the source code on QDrive at qdrive.net/download/… . It's a bit rough, but it works... not highly functional but might have something of use. – Michael Bray Sep 18 at 22:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.