Tagged Questions

CRCs (Cyclic Redundancy Codes/check) is an error detection technique used with digital data.

learn more… | top users | synonyms

18
votes
10answers
7k views

When is CRC more appropriate to use than MD5/SHA1?

When is it appropriate to use CRC for error detection versus more modern hashing functions such as MD5 or SHA1? Is the former easier to implement on embedded hardware?
8
votes
1answer
378 views

Finding which Checksum is used

Together with some other people we are trying to make a Savegameeditor for a game, but we came accross some problems. The savegame files contain a kind of checksum,of which we can't seem to find which ...
7
votes
7answers
877 views

CRC checks for files

I'm working with a small FAT16 filesystem, and I want to generate CRC values for indidual XML files which store configuration information. In case the data changes or is corrupted, I want to be able ...
7
votes
3answers
4k views

How could I guess a checksum algorithm?

Let's assume that I have some packets with a 16-bit checksum at the end. I would like to guess which checksum algorithm is used. For a start, from dump data I can see that one byte change in the ...
6
votes
1answer
533 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
2answers
167 views

CRC divisor calculation

Im trying to understand CRC and I'm getting confused as how to calculate the 'divisor'. In the example on wikipedia the divisor is 11 (1011) for input of 11010011101100 11010011101100 000 <--- ...
5
votes
3answers
1k views

CRC preset and residue

I am working with a device that requires me to generate a 16 bit CRC. The datasheet for the device says it needs the following CRC Definition: CRC Type Length Polynomial Direction ...
4
votes
4answers
276 views

How fast is the code

I'm developing game. I store my game-objects in this map: std::map<std::string, Object*> mObjects; std::string is a key/name of object to find further in code. It's very easy to point some ...
4
votes
5answers
3k views

How to use boost::crc?

I want to use boost::crc so that it works exactly like PHP's crc32() function. I tried reading the horrible documentation and many headaches later I haven't made any progress. Apparently I have to do ...
4
votes
7answers
2k views

What is the fastest hash algorithm to check if two files are equal?

What is the fastest way to create a hash function which will be used to check if two files are equal? Security is not very important. Edit: I am sending a file over a network connection, and will be ...
4
votes
4answers
1k views

Error Detection Effiency (CRC, Checksum, etc)

I have a hypothetical situation of sending data units, each of a thousand bytes. Failure rate is rare but when a error does occur it is less likely to be a single bit error and more likely to be an ...
4
votes
2answers
3k views

Determining CRC algorithm from data + CRC - embedded application

I have a set of data protected by 16bit checksums that I need to correct. The checksum locations are known, the exact areas they are calculated on and the exact algorithm used to calculate them are ...
3
votes
4answers
184 views

Save a CRC value in a file, without altering the actual CRC Checksum?

I am saving some Objects I have defined from my own classes, to File. (saving the stream data). That is all fine, but I would like to be able to store in the File the CRC checksum of that File. ...
3
votes
3answers
192 views

Using SuperFastHash instead of CRC32?

Note : I'm not trying to use SuperFastHash and expecting it to give the same output values as CRC32. I'm writing a simple LZSS compression/decompression routine to provide very fast decompression and ...
3
votes
2answers
529 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
284 views

Calculating CRC in awk

Has anyone implemented the POSIX 1003.2 compiliant CRC algorithm (as output by cksum) in awk/gawk? I'm needing to do a checksum on an in memory string (not the whole file) and shelling out to call ...
3
votes
1answer
715 views

CRC calculation by example

I'd like to know whether I grasped the concept of CRC calculation correctly. I'll provide 2 examples, the first is calculating the remainder using normal subtraction, the 2nd example uses this weird ...
3
votes
1answer
751 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
109 views

Genuine unique identification of PCs in html based websites

Imagine a website that uses google gears as a storage mechanism for various application level data. This data is intermittently replicated with a server using Asynchronous webservice calls while the ...
3
votes
4answers
272 views

Best way to test CRC logic?

How can I verify two CRC implementations will generate the same checksums? I'm looking for an exhaustive implementation evaluating methodology specific to CRC.
3
votes
1answer
1k views

CRC-16-ANSI library for for Java/Groovy?

I need to compute the CRC-16 for arbitrary strings in a mixed java/groovy application. Specifically, I need the CRC-16-ANSI aka CRC-16-IBM variant (see ...
3
votes
6answers
3k views

CRC32 Collision

I am trying to find a collision between two messages that will lead to the same CRC hash. Considering I am using CRC32, is there any way I can shorten the list of possible messages I have to try when ...
3
votes
5answers
1k views

Should I use CRC-16 or IP checksum (RFC1071) for an embedded application?

I'm writing an embedded application on an ARM7 processor and I need some form of checksum for data that I'm sending over a serial link as well for data that I'm storing in the flash. I was wondering ...
3
votes
8answers
827 views

Shorter GUID using CRC

I am making a website in ASP.NET and want to be able to have a user profile which can be accessed via a URL with the users id at the end. Unique identifier is obviously a bad choice as it is long and ...
3
votes
5answers
701 views

How would I get a Hash value of a users file with Javascript or Flash?

What I need to do is provide a file browser box on a web page where a user selects a file from their computer and, through javascript (or flash if necessary), some sort of Hash is returned such as ...
3
votes
9answers
1k views

How could I guess a checksum algorithm?

Does anybody know how to figure out the CRC algorithm if a given code + CRC string is given? I have got several strings consisting of code + matching CRCs but don´t know how to calculate the CRC in ...
3
votes
4answers
723 views

tricky crc algorithm

I am trying to find the crc that works with the following results. The byte string consists of 4 bytes (ie. CE1E) and the crc is an single byte (ie. 03) byte crc CE1E 03 CE20 45 CE22 6F 0000 C0 0001 ...
2
votes
2answers
36 views

Remake of Fletcher checksum from 32bit to 8

Is this conversion right from the original? uint8_t fletcher8( uint8_t *data, uint8_t len ) { uint8_t sum1 = 0xff, sum2 = 0xff; while (len) { unsigned tlen = len > 360 ? 360 : ...
2
votes
1answer
95 views

How do I compute a standard ANSI CRC-16 hash in Javascript?

I need to compute an ANSI CRC-­16 hash of plainText ASCII bytes using the standard ANSI CRC‐16 hash with the polynomial of X16 + X15 + X2 + 1. For example, if I have plaintext of ...
2
votes
4answers
57 views

CRC checking done automatically on Tcp/Ip?

I have question to ask. I wonder, while sending data with TcpClient, is there any sort of CRC checking algorithm that works automatically? Or I have to implement my own algorithm and resend the data ...
2
votes
1answer
85 views

Best 8-bit supplemental checksum for CRC8-protected packet

I'm looking at designing a low-level radio communications protocol, and am trying to decide what sort of checksum/crc to use. The hardware provides a CRC-8; each packet has 6 bytes of overhead in ...
2
votes
4answers
79 views

How fast are CRCs to generate?

I need to generate etags for image files on the web. One of the possible solutions I thought of would be to calculate CRCs for the image files, and then use those as the etag. This would require CRCs ...
2
votes
1answer
99 views

Flash loader CRC?

In a Flash/AIR app, if I download something using the URLLoader and the loader dispatches Event.COMPLETE - is the downloaded data guaranteed to be complete and correct? If not, what's the best way to ...
2
votes
3answers
138 views

How likely are two blocks of data likely to produce the same CRC64 value?

I have an caching application that uses a CRC64 value to ensure data integrity. I'm thinking about putting an extra field, a timestamp to be passed around with the data between the various cache ...
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
3answers
116 views

generating an safe hashcode for an objectgraph

I am importing some data from an file (xls, csv, xml) wich will result in a complex in-memory object graph. Now I need to know whether this graph has been modified since it once was exported. What ...
2
votes
1answer
537 views

CRC16 in Python

How do I calculate CRC16 in Python? In Perl I would write something like: use Digest::CRC "crc16"; $result = crc16($str); How do I do same thing in Python?
2
votes
4answers
1k views

CRC-CCITT (0xFFFF) function?

Can someone help me with Delphi implementation of CRC-CCITT (0xFFFF)? Already get the Java version, but confusing on how to port it to Delphi public static int CRC16CCITT(byte[] bytes) { ...
2
votes
1answer
790 views

CRC16 checksum: HCS08 vs. Kermit vs. XMODEM

I'm trying to add CRC16 error detection to a Motorola HCS08 microcontroller application. My checksums don't match, though. One online CRC calculator provides both the result I see in my PC program and ...
2
votes
3answers
1k views

JAVA CRC32: not the same as CRC from C#

I have to compare files with java with a CRC32 code provided by a C# script. When I calculate the CRC32 with java.util.zip.CRC32 the result is completely different ... My guess is that the polynom = ...
2
votes
1answer
717 views

What checksum algorithm should I use?

I'm building a system which needs to be able to find if blobs of bytes have been updated. Rather than storing the whole blob (they can be up to 5MBs), I'm thinking I should compute a checksum of it, ...
2
votes
1answer
955 views

Get CRC checksum of an NSData in Objective-C

How can I count CRC (32 or 64) of an NSData object in Objective-C? Thanks in advance!
2
votes
4answers
879 views

Improve speed on Crc16 calculation

I need to calculate Crc16 checksums with a $1021 polynom over large files, below is my current implementation but it's rather slow on large files (eg a 90 MB file takes about 9 seconds). So my ...
2
votes
1answer
884 views

What is the hamming distance, and how do I determine it for a CRC scheme?

While studying for a class in computer networks, the prof talked about the hamming distance between 2 valid code words in a sample code. I have read about hamming distance, and it makes sense from the ...
2
votes
2answers
393 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
2answers
359 views

How to Determine Which CRC to Use?

If I have a certain number of bytes to transfer serially, how do I determine which CRC (CRC8, CRC16, etc., basically a how many bit CRC?) to use and still have error detection percentage be high? Is ...
2
votes
2answers
881 views

CRC for cross platform applications

I wish to use common CRC logic in a VB.NET or C# application as well as on a C/Linux application. I have one C/Linux application that interacts with a webservice (written in C#) and also a web ...
2
votes
2answers
1k views

Find out CRC or CHECKSUM of RS232 data

I need to communicate with a RS232 device, I have no specs or information available. I send a 16 byte command and get a 16 byte result back. The last byte looks like some kind of crc or checksum, I ...
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
6answers
1k views

CRC error-correction library?

Is there a CRC library that enables the user not only detect errors but also correct them? I'm looking for a C/C++ or Java library, ideally open-source.

1 2 3 4