3
votes
6answers
101 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 con …
0
votes
4answers
86 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, …
0
votes
2answers
41 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**
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 p …
0
votes
5answers
184 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 …
1
vote
3answers
205 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) be …
1
vote
1answer
104 views
Performance of Computing CRC
#include "windows.h"
#include <string>
#include <iostream>
unsigned long crc32_table[] = {
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419,
0x70 …
2
votes
4answers
138 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 mor …
2
votes
4answers
246 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 flas …
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 …
0
votes
2answers
204 views
How to Calculate CRC8 in Java
I have a binary String of "011001000010100100100010001000100100100100", how do I calculate CRC8? Thanks
0
votes
2answers
235 views
Python data/file Crc
I am wanting to generate and store a CRC (or similar) value for a given list of files which can be used as a comparison at a later point. Writing a function to do this is simple en …
1
vote
5answers
201 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.
9
votes
8answers
403 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?
2
votes
2answers
134 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.
