Skip to content

evolutional/Crc32

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Crc32

Simple Crc32 HashAlgorithm implementation for .NET based on the forum post here.

#Usage

Same usage as HashAlgorithm in .NET.

var crc32 = Crc32.Create();
var crcBytes = crc32.ComputeHash(Encoding.UTF8.GetBytes("hello, world"));
var crcValue = BitConverter.ToUInt32(crcBytes, 0);

#Public Domain

This is free and unencumbered software released into the public domain.

See LICENSE for details.

About

Crc32 implementation for .NET

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages