3
votes
6answers
104 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 …
0
votes
4answers
93 views
compute crc of file in python
I want calculate crc of file, and get output like [E45A12AC]
I don't want md5 or other.
#!/usr/bin/env python
import os, sys
import zlib
def crc(fileName):
fd = open(fileName,"rb")
content = …
0
votes
4answers
296 views
checksum calculation
To calculate CRC I found a piece of code but I am not understanding the concept.
Here is the code:
count =128 and ptr=some value;
calcrc(unsigned char *ptr, int count)
{
unsigned short …
0
votes
2answers
45 views
protect c++ output file(pe file) from editing using crc
How to protect c++ output file(pe file) from editing using crc(Cyclic Redundancy Check)?
**Best Regards**
1
vote
3answers
210 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
1answer
235 views
How do you compute the XOR Remainder used in CRC?
I'm trying to remember how the math is worked out to compute the remainder of an XOR algorithm in Cyclical Redundancy Checks to verify the remainder bits of a network message.
I shouldn't have tossed …
0
votes
1answer
47 views
Python way to do crc32b
Hi all!
As i posted as title, there is a way to use the crc32b hash on python natively or through a library (i.e. chilkat)?
My intention is to "translate" a program from php to python, so output …
0
votes
2answers
293 views
How to change NSIS Error message about CRCCheck
Some of my users are complaining about some odd errors my installers had after downloading them from my web server.
This are NSIS installer that when downloaded came crippled or incomplete (usually …
0
votes
5answers
190 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 …
1
vote
1answer
105 views
Performance of Computing CRC
#include "windows.h"
#include <string>
#include <iostream>
unsigned long crc32_table[] = {
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419,
0x706AF48F, 0xE963A535, …
2
votes
4answers
145 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
253 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 …
1
vote
8answers
142 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 …
1
vote
1answer
134 views
Runtime CRC checking
Q.
I have a hex code running on a machine. How do I calculate the checksum of the entire code at runtime?
0
votes
2answers
207 views
How to Calculate CRC8 in Java
I have a binary String of "011001000010100100100010001000100100100100", how do I calculate CRC8? Thanks
