Example #1
0
 public void CRC32_2()
 {
     Assert.AreEqual(UInt32.Parse("664EF010", System.Globalization.NumberStyles.HexNumber),
                     CRC32.ForEncodedString("This is an example of a much longer string of characters", System.Text.Encoding.ASCII));
 }
Example #2
0
 public void CRC32_1()
 {
     Assert.AreEqual(UInt32.Parse("D6C12026", System.Globalization.NumberStyles.HexNumber),
                     CRC32.ForEncodedString("Hello Dolly!", System.Text.Encoding.ASCII));
 }