A cyclic redundancy check (CRC) is an error-detecting code designed to detect accidental changes to raw computer data, and is commonly used in digital networks. (wiki) A CRC32 algorithm typically takes in a file stream or character array and calculates an unsigned long codeword from the input. ...
-1
votes
1answer
7 views
Two messages with same CRC32 checksum
As a part of homework, we are required to alter the content of a message but end up with the same CRC32 checksum. We need to do a specific change in the message but after that change by ...
0
votes
3answers
172 views
CRC-16 and CRC-32 Checks
I need help trying to verify CRC-16 values (also need help with CRC-32 values). I tried to sit down and understand how CRC works but I am drawing a blank.
My first problem is when trying to use an ...
2
votes
2answers
92 views
Python CRC32 Calculation
I am trying to write some python code to test my hardware CRC module in the micro. The python code will calculate the crc value for a random data block and it will compare with the crc value returned ...
0
votes
1answer
97 views
What is a ethernet frame sample which can be sent?
i want to send a ethernet frame from FPGA to my PC for wireshark to receive
i pass payload into CRC generator to get the CRC result, but i guess CRC error as wireshark not received any thing which is ...
0
votes
2answers
90 views
sha1, crc32, and md5 how to read this data?
How can I Decode the md5, crc32, and sha1, below is xml file and then is code I'm using to get data so far.
<files>
<file name="AtTheInn-Germany-Morrow78Collection.mp3" ...
0
votes
1answer
54 views
CRC32 java differs on java 64 bits
Recently I migrate an applicattion on tomcat5 with 32bit java to a tomcat6 with 64bits java.
In the application have a text CRC calculation, which returns different values in each of the servers.
...
1
vote
2answers
124 views
_mm_crc32_u64 poorly defined
Why in the world was _mm_crc32_u64(...) defined like this?
unsigned int64 _mm_crc32_u64( unsigned __int64 crc, unsigned __int64 v );
The "crc32" instruction always accumulates a 32-bit CRC, never a ...
0
votes
0answers
53 views
Need help in CRC calculation
I am trying to calculate the CRC using long division method and have created the following code. When I try to run the code using CRC('1110110'), according to my calculation the code should return ...
1
vote
2answers
84 views
Using CRCs as a digest to detect duplicates among files
The primary use of CRCs and similar computations (such as Fletcher and Adler) seems to be for the detection of transmission errors. As such, most studies I have seen seem to address the issue of the ...
0
votes
1answer
130 views
Calculate CRC32 of an String or Byte Array [duplicate]
Is there any function or example for VB.NET to calculate CRC32 of an string or Byte Array?
0
votes
4answers
72 views
CRC32 intel implementation
I want to use intel method to calculate file crc (in c++). I found this http://create.stephan-brumme.com/crc32/ (Slicing-by-8). But this implementation return me crc32 in int, but I want to get crc32 ...
2
votes
2answers
71 views
CRC calculation for Serial ATA (SATA)
After reading a lot I came to know that there is no SINGLE method of calculating CRC.
I need method/algorithm/VHDL code for calculating CRC specifically for Serial ATA (SATA)
1
vote
5answers
72 views
Checksum of floats with roundtrip through text file
I need to write a couple of floats to a text file and store a CRC32 checksum with them. Then when I read the floats back from the text file, I want to recompute the checksum and compare it to the one ...
0
votes
1answer
141 views
Using crc32 over md5 for hashing memcached keys
We currently use MD5 to hash keys that we want to lookup in memcached.
A basic example being:
$sql = "SELECT * FROM articles WHERE id = 1";
$key = md5($sql);
if (!$results = ...
1
vote
1answer
60 views
MySQL returning different values for CRC32() with same string
I am having a bizarre issue with two queries returning different hash values for CRC32 with the same string.
If I run:
SELECT 'http://mywebsite4.com/myvideos', ...
0
votes
2answers
52 views
casting crc32 to uint8_t
I have a hardware module that can calculate a crc quite quickly on the project I am working on, however it returns a 32-bit number (as it is a crc32). I need to fit the crc into a uint8_t for the ...
0
votes
2answers
190 views
Same crc32 for Python and C
I need script that will calculate crc32 with the same output for both Python and C.
I'm using right now zlib.crc32, but for C there is no such library and we are writing it on our own basing on ...
0
votes
1answer
100 views
Unsigned Bytes CRC32 in Java
I'm trying to replicate the CRC32 hashing function that is available in PHP in Java. The existing CRC32 class within Java returns a different hash and I believe it is because the Java bytes in my ...
0
votes
1answer
130 views
How to create a 3-bit crc in C++?
http://en.wikipedia.org/wiki/Cyclic_redundancy_check#Computation_of_CRC
I tried to do that^^.. Using C++... Since it seemed basic I thought of doing it using an array....
This is my code[Inefficient ...
0
votes
0answers
61 views
How to find out CRC32 hex value of xml file
I am trying to post a soap request in soap UI and one of the parameters requires the CRC32 hex value of the xml input in another parameter. I was just wondering how it is possible to obtain this ...
1
vote
2answers
90 views
Batch: compare files using CRC32
I have given myself a simple task of writing a batch file that will do the following:
Compare CRC32 of each file in "first" folder with each file in "second" folder. Output needs to be the name of ...
0
votes
2answers
263 views
Checksumming: CRC or hash?
Performance and security considerations aside, and assuming a hash function with a perfect avalanche effect, which should I use for checksumming blocks of data: CRC32 or hash truncated to N bytes? ...
2
votes
1answer
120 views
How to monitor a static HTML page for changes with Greasemonkey? Use a hash?
I want my Greasemonkey script to run ONLY when the static page it's accessing has the exact same content as before...
Now I have the ability to set a variable containing a hash of this page. I'm ...
0
votes
1answer
240 views
Yet another Java CRC32 implementation related issue
My problem is when using this implementation; the Java CRC32 calculation is different from C#'s CRC32 calculation using a look-up table.
The following is the CRC32 code I am using:
public static ...
1
vote
5answers
110 views
Unique pair of two integers [duplicate]
Possible Duplicate:
Mapping two integers to one, in a unique and deterministic way
I'm trying to create unique identificator for pair of two integers (Ruby) :
f(i1,i2) = f(i2, i1) = ...
2
votes
1answer
123 views
How to use java CRC32 class
I am trying to use the CRC32 class from Java. The input of the data is a byte array which represent an Ethernet packet (Eth + IP + payload). However the output of the checksum from CRC32 class is ...
1
vote
1answer
121 views
Checksum algorithm for SQL query?
I need to generate a checksum based on a SQL query and the string values of any parameters used in that query. The checksum is used in a caching scenario. If the checksum exists in cache, so does the ...
0
votes
1answer
69 views
crc32 with given parameters
I have to create a crc32 sum over a file.
But there are some dependencies:
crc32 with the polynom 0x04C11DB7
Init of the crc with 0xffffffff
and a final XOR with 0xffffffff
How can i get this ...
1
vote
0answers
174 views
Cannot download zipped images. CRC32 always 00000000
I created a simple code with codeigniter to download zipped up image files. It seems to work but when I try to open the downloaded zip file the crc32 is always 00000000 and the file/files cannot be ...
2
votes
4answers
522 views
Is there any difference in calculating CRC32 checksum in C# and Java?
I have to calculate CRC32 checksum for a string in C# and send it to an external application.
On the other end they will calculate it using Java.
But my checksum does not match on the their end.
...
4
votes
2answers
348 views
Translate Delphi+Assembler CRC32 implementation to C#
I have to translate partially one old and large application from Delphi to .NET (C#).
Here is one strange (at least for me) implementation of CRC32:
function CRC32(CRC: LongWord; Data: Pointer; ...
2
votes
1answer
506 views
Speed up my indexes in MySQL - CRC or MD5?
I've got a huge table with something like 8 300 000 rows (won't be edit nor delete ever).
My first column look something similar P300-4312B_X16_S and the entry isn't unique so I use a regular INDEX ...
0
votes
2answers
293 views
java.util.zip.CRC32 comparing image files
Is there any suggestion (piece of code) that helps me to understand the concept of how to compare two different image files whether they are same or not?
Thanks in advance.
EDIT:
I mean, for ...
1
vote
2answers
1k views
calculate (and validate) ethernet FCS (crc32) in vhdl
I'm using the Spartan 3E Starter Kit and I'm trying to receive Ethernet frames on it via a 100 MBit link.
For those who don't know, the board features a PHY chip, exposing the receiving clock with 25 ...
0
votes
1answer
100 views
How to cache partial crc32 checksums so I don't need to calculate it multiple times?
In some code that I wrote recently, I had this pattern:
from zlib import crc32
new_data = get_some_input()
crc32List['stream1'] = crc32(new_data, crc32List['stream1']) & 0xffffffffL
...
0
votes
2answers
217 views
How can I go about adding a ProgressBar to this code which calculates CRC32 checksum in VB.NET?
Thanks for reading - I am using the class below to calculate the CRC32 checksum of a specified file.
My question is how would I go about reporting the progress of file completion (in %) to a ...
0
votes
2answers
586 views
CRC programming help needed, CRC32 conversion from the .NET class to C
Code(written in C):
unsigned long chksum_crc32 (unsigned char *block, unsigned int length)
{
register unsigned long crc;
unsigned long i;
crc = 0xFFFFFFFF;
for (i = 0; i < length; ...
0
votes
0answers
138 views
Data conversion issue possibly, char to unsigned char. A software and firmware CRC32 interaction issue
My current issue is that I am computing a CRC32 hash in software and then checking it in the firmware, however when I compute the hash in firmware its double what it is supposed to be.
...
6
votes
1answer
1k views
XAPK File validation shows in correct data Information
While running APK expansion file sample I just skiped checking CRC32 to avoide crc bug algorithm and its working very fine!! But while XAPK File validation shows in correct downloaded data ...
3
votes
1answer
279 views
CRC32 Calculation With Pycrc and PHP code Doesn't Match Expected Result
I was trying to convert a CRC32 algorithm defined as a C/C++ macro
unsigned long sctp_crc_c[256] = {
0x00000000L, 0xF26B8303L, 0xE13B70F7L, 0x1350F3F4L,
0xC79A971FL, 0x35F1141CL, 0x26A1E7E8L, ...
0
votes
1answer
263 views
use gunzip to calculate crc32 code of one string
all.
I want to use gunzip to calculate a string's crc32 code.
String: teststring
This command works well:
echo -n teststring | gzip -f > /tmp/filename && gunzip -lv /tmp/filename ...
0
votes
2answers
327 views
802.11 FCS (CRC32) [closed]
Is the below code correctly calculating the FCS value of wireless 802.11 frames?
Because the value produced by the below code does not match the value shown by wireshark.
const uint32_t crctable[] = ...
1
vote
1answer
265 views
CRC32 From C++/C# to PHP
I'm not good at algorithms like CRC32, MD5 etc. so I'm even having difficulty asking the question :)
Basically there is a C# application that uses
[DllImport("Crc32.dll")]
private static extern ...
0
votes
2answers
147 views
CRC32 returns new integer each time
Everytime I run the password function I get a new value. Why?
/**
*
* Javascript crc32
* http://www.webtoolkit.info/
*
**/
function crc32 (str) {
function Utf8Encode(string) {
string ...
0
votes
1answer
282 views
CRC32 hex in .net
I'm trying to find a CRC32 computation algorythm that output data in positive 8-character HEX (like winrar CRC for example).
All algorythms found return a positive/negative integer that I don't know ...
2
votes
1answer
357 views
Calculating CRC Checksum for ALAsset
I'm trying to calculate the CRC checksum for an ALAsset. My goal is to save all the CRCs and compare them at a later time to see if the asset has been changed, but every time I generate a CRC for the ...
0
votes
2answers
877 views
Can CRC32 be used as a hash function?
Can CRC32 be used as a hash function? Any drawbacks to this approach?
Any tradedeoffs?
thanks
0
votes
3answers
130 views
checking crc32 of a file
This is not really a "how to" question.
Is there a "standard" file structure that applications use to store the checksums of files in a folder? I'm developing a tool to check various things like ...
2
votes
1answer
80 views
Does MSI file support CRC checks on Windows?
I was curious if it's possible to tell if the MSI file was modified since it was built?
0
votes
2answers
381 views
Is CRC32 really so bad for file integrity check?
Of course that MD5 is better then CRC32, SHA1 is better then MD5 and so on... But also they are also much slower then CRC32.
Right know, I am thinking about how to check consistency of being ...
