-->

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

2020-08-13 05:07发布

问题:

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?

回答1:

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



标签: c# crc