generate CRC

G

Guest

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
 
?

=?ISO-8859-1?Q?Arne_Vajh=F8j?=

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top