Search code examples
c#crc

Is there a C#/.NET standard implementation of CRC?


I know that implementations exist for SHA-1 and SHA-256 in System.Security.Cryptography.

Is there anything built in that can compute CRC hashes?


Solution

  • I don't think there is one built into the .NET Framework. Use an open source version such as Damien Guard's library.