using System.Security.Cryptography;
public static void Main()
sbyte[] sData = { -117, 12, 123, -125, -35, -78, 7, -82, -72, 123, -100, 77, 81, -67, -65, -102 };
sbyte[] sKey = { -101, 81, 95, -22, -49, 117, 6, 73, -127, -86, 96, 77, -111, -91, 78, -105 };
byte[] data = new byte[16];
byte[] key = new byte[16];
for (int i = 0; i < 16; i++)
data[i] = (byte)sData[i];
rDel.Mode = CipherMode.ECB;
rDel.Padding = PaddingMode.None;
var cTransform = rDel.CreateEncryptor();
byte[] result2 = cTransform.TransformFinalBlock(data, 0, data.Length);
for (int i = 0; i < 16; i++)
Console.WriteLine(result2[i]);