Tagged Questions

0
votes
2answers
24 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
168 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 …
0
votes
5answers
150 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 …
0
votes
1answer
44 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 …
1
vote
1answer
102 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
109 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
223 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 …
8
votes
8answers
372 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?
1
vote
8answers
129 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 …
1
vote
2answers
207 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
187 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.
0
votes
2answers
188 views

How to Calculate CRC8 in Java

I have a binary String of "011001000010100100100010001000100100100100", how do I calculate CRC8? Thanks
2
votes
2answers
131 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.
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 byt …
0
votes
1answer
217 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 s …

1 2 next
15 30 50 per page