Tagged Questions

3
votes
4answers
2k views

CRC32 C or C++ implementation

I'm looking for an implementation of CRC32 in C or C++ that is explicitly licensed as being free or public domain. The implementation here seems nice, but the only thing it says about the license is …
3
votes
4answers
1k views

How do I calculate CRC32 of a string

How do I calculate the CRC32 (Cyclic Redundancy Checksum) of a string in .NET?
2
votes
6answers
234 views

CRC32 to make short URL for web

I am trying to understand crc32 to generate the unique url for web page. If we use the crc32, what is the maximum number of urls can be used so that we can avoid duplicates? What could be the …
2
votes
2answers
136 views

What is a running CRC?

I have searched and am not able to find information on what it is and how it is computed.
2
votes
3answers
851 views

Why is this CRC32 implementation in C# so slow?

I'm using the following function to compute the CRC32 of a file in a VS2008, .NET 3.5 project: public UInt32 ComputeHash(System.IO.Stream stream) { unchecked { const int BUFFER_SIZE = …
1
vote
6answers
313 views

the fastest way to create checksum for large files in python

hi, i need to transfer large files across network and need to create checksum for them on hourly basis. so the speed for generating checksum is critical for me. somehow i can't make zlib.crc32 and …
1
vote
3answers
219 views

Reversing CRC32

I'm looking for a way to reverse a CRC32 checksum. There are solutions around, but they are either badly written, extremely technical and/or in Assembly. Assembly is (currently) beyond my ken, so I'm …
0
votes
2answers
110 views

C# fast crc32 calculation :

I've profiled my application with Ants and found out that > 10% is in CRC32 calculations. (The CRC32-calculation is done in plain C#) I did some googling and learned about the following intrinsics in …
0
votes
1answer
24 views

Dot net 3.5: does dot net 3.5 provides some api to calculate crc32 for input data?

Does dot net 3.5 provides some api to calculate crc32 for input data?I have got some links which provides source code to do so.But i want to use Dot Net Api's code.
0
votes
3answers
40 views

is there any better algorithm of crc32 to check corruption of data?

i am receiving packets from a terminal device and then upon receiving packets on host side, i use crc32 algo to generate mac for packet data so that i can check is there any corruption of data during …
0
votes
1answer
36 views

.net 3.5:how to implement calculate crc32 for data using dot net 3.5 api?

how to implement calculate crc32 for data using dot net 3.5 api.I have done the same in java with following code. public static String getMAC (byte [] value) { java.util.zip.CRC32 crc32 = …
0
votes
7answers
100 views

Efficient ways of telling whether or not a string/file has changed - crc32? md5? something else?

I'm looking for an efficient way to tell whether or not a string (or a file) has changed since the last time we looked at it. So, we run this function against 1,000,000 files/strings (each …
0
votes
1answer
120 views

Hash function combining - is there a significant decrease in collision risk?

Hi all. Does anyone know if there's a real benefit regarding decreasing collision probability by combining hash functions? I especially need to know this regarding 32 bit hashing, namely combining …
0
votes
2answers
226 views

Creating zip using Zip Utility

Hi, I am using the Zip utility package of Java and wanted to know how to create a zip file with no compression at all. Setting the level to 0 doesn't help. Is this right? Also, when I used the …