generate CRC

  • Thread starter Thread starter Jassim Rahma
  • Start date Start date
What you need to do is find some C# code that will perform a CRC32 checksum.
If I remember correctly, you can find one in SharpZipLib, the free zip
library.
Peter
 
Jassim said:
when i used the tool in:

http://crc32-checksum.waraxe.us/

i wa able to genrate checkum from mu CPU MAC address BFEBFBFF000006F6
and the checksum was EB5860F6.

how can i do that in C#?

Download
http://www.gotdotnet.com/Community/...mpleGuid=37a91f12-ca84-49df-a2d7-d8a36cfcc933
and use it like:

CRC32.Init();
string input = "BFEBFBFF000006F6";
string crc = BitConverter.ToInt32(CRC32.Crc32(input), 0).ToString("X");

The crc is compatible with the PHP site you linked to.

Arne
 
Back
Top