Exemple #1
0
 public CRCBruteForce(string element, string key, int size)
 {
     this.size = size;
     crc = new CRC();
     found = new List<BitArray>();
     
 }
Exemple #2
0
 /// <summary>
 /// Example of use
 /// </summary>
 /// <param name="args"></param>
 static void Main(string[] args)
 {
     string text = "1101011011";
     string key = "10011";
     string tr;
     CRC crc = new CRC();
     crc.CRCAlg(text, key, out tr);
     System.Console.WriteLine(tr);
 }