using System.Security.Cryptography;
using System.Collections;
public static void Main()
Console.WriteLine("Hello World");
byte[] dcsn = { 234, 46, 105, 141, 149, 178, 132, 65, 66, 47, 73, 151, 214, 255, 213, 69, 12 };
using (SHA256 mySHA256 = SHA256.Create())
Console.WriteLine(BitConverter.ToString(dcsn));
var shv = mySHA256.ComputeHash(dcsn);
Console.WriteLine(BitConverter.ToString(shv));
byte[] part1 = new byte[16];
byte[] part2 = new byte[16];
Array.Copy(shv,0, part1,0, 16);
Array.Copy(shv,16,part2,0,16);
Console.WriteLine(BitConverter.ToString(part1));
Console.WriteLine(BitConverter.ToString(part2));
BitArray ba1 = new BitArray(part1);
BitArray ba2 = new BitArray(part2);
Console.WriteLine(res.Length);
Console.WriteLine(BitConverter.ToString(x));
Console.WriteLine(did.ToString());