如何计算string的CRC32
如何在.NET中计算string的CRC32(循环冗余校验和)?
这家伙似乎有你的答案。
http://damieng.com/blog/2006/08/08/Calculating_CRC32_in_C_and_NET
如果这个博客消失了或者破坏了这个url,那么这里是github链接:
从博客文章中使用Crc32类:
Crc32 crc32 = new Crc32(); String hash = String.Empty; using (FileStream fs = File.Open("c:\\myfile.txt", FileMode.Open)) foreach (byte b in crc32.ComputeHash(fs)) hash += b.ToString("x2").ToLower(); Console.WriteLine("CRC-32 is {0}", hash);