0
votes
1answer
50 views
CRC-4 implementation in C#
Hi.
I've been searching the net for a C# implementation of the 4-bit cyclic redundancy check (CRC-4-ITU) but so far I've been unsuccessful.
Is there anyone who's able to give me a reference …
3
votes
6answers
113 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
3answers
105 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
2answers
51 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
219 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 …
9
votes
8answers
429 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?
0
votes
5answers
199 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
109 views
Performance of Computing CRC
#include "windows.h"
#include <string>
#include <iostream>
unsigned long crc32_table[] = {
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419,
0x706AF48F, 0xE963A535, …
0
votes
1answer
48 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 …
2
votes
4answers
152 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
263 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 …
0
votes
4answers
304 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 …
1
vote
8answers
147 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 …
0
votes
2answers
256 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 enough, but is there a …
1
vote
5answers
222 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.
