9
votes
8answers
442 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?
5
votes
4answers
2k 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 …
4
votes
2answers
676 views
Determining CRC algorithm from data + CRC - embedded application.
Hello,
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 …
4
votes
7answers
358 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 …
3
votes
6answers
124 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 …
3
votes
3answers
398 views
CRC preset and residue
Hi, 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 …
2
votes
4answers
158 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 …
2
votes
4answers
272 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 …
2
votes
2answers
142 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
4answers
206 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 …
2
votes
12answers
537 views
How could I guess a checksum algorithm?
Hi, 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 …
2
votes
4answers
370 views
tricky crc algorithm
Hi,
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
…
1
vote
3answers
235 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
vote
1answer
114 views
Performance of Computing CRC
#include "windows.h"
#include <string>
#include <iostream>
unsigned long crc32_table[] = {
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419,
0x706AF48F, 0xE963A535, …
1
vote
8answers
152 views
Shorter GUID using CRC
Hi,
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 …
