Skip to content

kuais/KuCrc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRC计算库 in C# (适用于8-32位的CRC校验, Dotnet 4.0)

使用说明

byte[] input = Encoding.ASCII.GetBytes("1234567");
KuCrc crc = new KuCrc(KuCrc.CrcType.CRC32);
byte[] output = crc.ComputeHash(input); // output 即为Crc32计算出来的值

Releases

No releases published

Packages

No packages published

Languages