DESTest C# sample don't work

Good catch. Apparently it was only tested with encryption keys not including “abcdef”.

Ass the following to the top of the .cs file:

using System.Globalization;

Then, change the “Parse” line to:

key* = Byte.Parse(strkey.Substring(i*2, 2), NumberStyles.HexNumber);

That should do the trick. Thanks!*