Tagged Questions

A cyclic redundancy check (CRC) is an error-detecting code designed to detect accidental changes to raw computer data, and is commonly used in digital networks. (wiki) A CRC32 algorithm typically takes in a file stream or character array and calculates an unsigned long codeword from the input. One can transmit this codeword and re-calculate it on the receiver end, then compare it to the transmitted one to detect an error.

learn more… | top users | synonyms

12
votes
1answer
399 views

is it possible to do crc32 calculation in splits?

I use this trivial function to calc the crc checksum of a given file: long i, j = 0; int k = 0; uint crc = 0xFFFFFFFF; FileInfo file_info = new FileInfo(file); byte[] file_buffer = new byte[32768]; ...
10
votes
6answers
2k views

How is a CRC32 checksum calculated?

Maybe I'm just not seeing it, but CRC32 seems either needlessly complicated, or insufficiently explained anywhere I could find on the web. I understand the gist of it is that it is the remainder from ...
9
votes
1answer
234 views

Python equivalent of unix cksum function

I've been looking for the equivalent python method for the unix cksum command: http://pubs.opengroup.org/onlinepubs/7990989775/xcu/cksum.html $ cksum ./temp.bin 1605138151 712368 ./temp.bin So far ...
9
votes
5answers
884 views

Can one construct a “good” hash function using CRC32C as a base

Given that SSE 4.2 (Intel Core i7 & i5 parts) includes a CRC32 instruction, it seems reasonable to investigate whether one could build a faster general-purpose hash function. According to this ...
7
votes
6answers
16k 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 ...
6
votes
1answer
531 views

Calculate/validate bz2 (bzip2) CRC32 in Python

I'm trying to calculate/validate the CRC32 checksums for compressed bzip2 archives. .magic:16 = 'BZ' signature/magic number .version:8 = 'h' for Bzip2 ...
5
votes
4answers
8k views

How do I calculate CRC32 of a string

How do I calculate the CRC32 (Cyclic Redundancy Checksum) of a string in .NET?
4
votes
3answers
159 views

Is CRC32 additive?

On several places I've read that crc32 is additive and so: CRC(A xor B) = CRC(A) xor CRC(B) I failed to prove this as following code: def crc32(data): return zlib.crc32(data) & ...
4
votes
3answers
307 views

How can I speed up crc32 calculation?

I'm trying to write a crc32 implementation on linux that's as fast as possible, as an exercise in learning to optimise C. I've tried my best, but I haven't been able to find many good resources ...
4
votes
1answer
631 views

PHP crc32() only numbers

I have a MD5 hash: 10f86782177490f2ac970b8dc4c51014 http://www.fileformat.info/tool/hash.htm?text=10f86782177490f2ac970b8dc4c51014 Result: c74e16d9 but PHP: ...
3
votes
2answers
528 views

Difference between CRC and hash method (MD5, SHA1)

Both CRC and hash maehtod can be used to verify the integraty of the original data. why nowadays most system uses hash method?
3
votes
1answer
748 views

How to calculate 32 bit CRC in Ruby on rails?

i want to calculate 32 bit CRC value for 'input field value" in Ruby on rails. need the sample code , please help me anyone.
3
votes
1answer
1k views

Javascript crc32 function and PHP crc32 not matching

I'm working on a webapp where I want to match some crc32 values that have been generated server side in PHP with some crc32 values that I am generating in Javascript. Both are using the same input ...
3
votes
2answers
261 views

hw to get source code native c language library of java 1.4?

Hi i want to see implementation of java.util.zip.CRC32. But within this class its using native c library functions for core implementation.How can I get the native source code. I can see the ...
3
votes
6answers
1k 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 ...
3
votes
3answers
4k 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 = ...
2
votes
2answers
141 views

How to test some code using Google test?

Basically I'm trying to start some unit tests in google test but not sure how to go about it. I have been given some code to try and test but I have no idea how to go about doing this. This is some of ...
2
votes
1answer
56 views

Java: update CRC32 from a stream

Am I misunderstanding the use of either of the CRC32 or CheckedInputStream classes to calculate a checksum by continuously updating with the latest input? When the input is <= 128KiB a valid CRC32 ...
2
votes
1answer
136 views

index on url or hashing considering RAM

I am working on a project which needs to add/update around 1 million urls daily. Some days are mostly updates and some days are mostly add and some days are mix. So, on every query there is need to ...
2
votes
0answers
115 views

Why is TeraSort map phase spending significant time in CRC32.update() function?

I am trying to profile which functions consume the most time for a TeraSort Hadoop job. for my test system, I am using a basic 1-node pseudo-distributed setup. This means that the NameNode, DataNode, ...
2
votes
2answers
217 views

Using SSE 4.2 crc32 algorythm in c# ? Is it possible?

I have to calculate crc32 on a lot of files, and also huge files (several GB). I tried several algo found on the web like Damieng or this one, and it works, but it is slow (more than 1 min). I found ...
2
votes
3answers
304 views

Equivalent to Unix cksum in Windows

I download a file and his checksum (generated by cksum Unix command). So, I want, in my C# app test if the Checksum is in adequation with the app I downloaded. I checked at the Unix man page of ...
2
votes
1answer
67 views

How to use the C64x+ GMPY instruction to compute a CRC32?

How can I use the Galois Field Multiply (GMPY) instruction featured in TI C64x+ DSPs to efficiently compute a CRC32?
2
votes
1answer
229 views

What would a big-endian compatible version of this CRC32 method look like?

I'm working on a project that requires a CRC32 check to be done on data that is being transmitted. I would like to make my code compatible for not only Intel architecture ("Little Endian"), but for ...
2
votes
1answer
434 views

How to check CRC32 of NSData? [closed]

Possible Duplicate: Get CRC checksum of an NSData in Objective-C I can't find any implementation of CRC32 algoryghm in xcode. Can anybody help me calculate it?
2
votes
5answers
468 views

How to do CRC check on executable loaded in memory?

I want to run a thread that checks the memory image of the current executable, for protection reasons. Any ideas how to do CRC on the current memory executable (WinAPI or .NET way)? My app is written ...
2
votes
2answers
338 views

python crc32 woes

I'm writing a python program to extract data from the middle of a 6 GB bz2 file. A bzip2 file is made up of independently decryptable blocks of data, so I only need to find a block (they are delimited ...
2
votes
2answers
82 views

Evaluating the differences in CRC-32 implementations

I have seen many different implementations of the same basic CRC-32 algorithm shown below: int remain; int sbox[SIZESBOX]; int dividend; int bit; for(dividend = 0; dividend < SIZESBOX; ...
2
votes
2answers
391 views

Expected collisions for perfect 32bit crc

I'm trying to determine how my crc compares to an "ideal" 32bit crc. So I ran my crc over 1 million completely random samples of data and collected the amount of collisions, I want to compare this ...
2
votes
3answers
500 views

How to find crc32 of big files?

The PHP's crc32 support string as input.And For a file , below code will work OFC. crc32(file_get_contents("myfile.CSV")); But if file goes huge (2 GB) it might raise out of memory Fatal error. ...
2
votes
4answers
2k views

Data Length vs CRC Length

I've seen 8-bit, 16-bit, and 32-bit CRCs. At what point do I need to jump to a wider CRC? My gut reaction is that it is based on the data length: 1-100 bytes: 8-bit CRC 101 - 1000 bytes: 16-bit ...
2
votes
1answer
670 views

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

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 Adler32 and ...
2
votes
2answers
296 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.
1
vote
2answers
38 views

CRC-32 implementation in java.util.zip.CRC32

Which CRC-32 algorithm is used in the Java CRC-32 class ? The java doc does not give any details. What is the polynomail used and the initial value for calculaton ?
1
vote
2answers
33 views

Hash Functions and Keeping Passwords Protected

I have been wondering a lot about different forms of Hashing and such for passwords. Yes I know about salting and would probably add that to the hash, but this is without any salting. I would ...
1
vote
2answers
103 views

32-bit checksum algorithm better quality than CRC32?

Are there any 32-bit checksum algorithm with either: Smaller hash collision probability for input data sizes < 1 KB ? Collision hits with more uniform distribution. These relative to CRC32. ...
1
vote
2answers
106 views

Java compatible cksum function

Is there any library/code in Java to calculate the 32-bit CRC of a stream of bytes in a way thats consistent with the cksum command in unix ?
1
vote
1answer
79 views

CRC24Q implementation

I am trying to implement the algorithm of a CRC check, which basically created a value, based on an input message. So, consider I have a hex message 3F214365876616AB15387D5D59, and I want to obtain ...
1
vote
4answers
165 views

Hashing an IP address to a number in [0, H)

I'm using Python-2.6. I have very little knowledge of hash functions. I want to use a CRC hash function to hash an IP address like '128.0.0.5' into the range [0, H). Currently I'm thinking of doing ...
1
vote
1answer
178 views

Do Java CRC32 implementations differ on 32Bit and 64Bit

Is there any difference between the Java CRC32 implementations on 32Bit and 64Bit JVMs? My problem is, that my client application (on a 32Bit platform) calculates a hash and compares it against a hash ...
1
vote
4answers
694 views

CRC32+Size vs MD5/SHA1

We have a storage of files and the storage uniquely identifies a file on the basis of size appended to crc32. I wanted to know if this checksum ( crc32 + size ) would be good enough for identifying ...
1
vote
3answers
731 views

CRC32 checksum in Python with hex input

I'm wanting to calculate the CRC32 checksum of a string of hex values in python. I found zlib.crc32(data) and binascii.crc32(data), but all the examples I found using these functions have 'data' as a ...
1
vote
2answers
109 views

Good checksum to speed up searches

I want to speed up the search of my application by creating an checksum index of my strings. Is CRC32 good enough? I'm not using it for security. Just as a way to represent a string as a ...
1
vote
1answer
363 views

Java image transfer problem

I have a school assignment, to send a jpg image,split it into groups of 100 bytes, corrupt it, use a CRC check to locate the errors and re-transmit until it eventually is built back into its original ...
1
vote
5answers
457 views

How to set parameters in Python zlib module

I want to write a Python program that makes PNG files. My big problem is with generating the CRC and the data in the IDAT chunk. Python 2.6.4 does have a zlib module, but there are extra settings ...
1
vote
3answers
1k views

crc32 decrypt short string

I am retrieving lists of crc32 hashes that contain names of files, not there contents. I need to be able to decrypt the strings which are hashed names like "vacationplans_2010.txt" which are less ...
1
vote
3answers
1k views

CRC for PNG file format

I need to read a PNG file and interpret all the information stored in it and print it in human readable format. While working on PNG, i understood that it uses CRC-32 for generating checksum for each ...
1
vote
1answer
137 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.
1
vote
6answers
3k views

the fastest way to create checksum for large files in python

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
2k 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 ...

1 2