active questions tagged crc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T21:42:01Zhttp://stackoverflow.com/feeds/tag/crchttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1761607/what-is-the-fastest-hash-algorithm-to-check-if-two-files-are-equal3What is the fastest hash algorithm to check if two files are equal?eflles2009-11-19T07:52:54Z2009-11-19T08:14:27Z
<p>What is the fastest way to create a hash function which will be used to check if two files are equal?</p>
<p>Security is not very important.</p>
<p>Edit: I am sending a file over a network connection, and will be sure that the file on both sides are equal</p>
http://stackoverflow.com/questions/1742866/compute-crc-of-file-in-python0compute crc of file in pythonunknown (google)2009-11-16T15:23:47Z2009-11-16T19:04:34Z
<p>I want calculate crc of file, and get output like [E45A12AC]
I don't want md5 or other.</p>
<pre><code>#!/usr/bin/env python
import os, sys
import zlib
def crc(fileName):
fd = open(fileName,"rb")
content = fd.readlines()
fd.close()
for eachLine in content:
zlib.crc32(eachLine)
for eachFile in sys.argv[1:]:
crc(eachFile)
</code></pre>
<p>calculates for each line crc, but its output <-1767935985> per line is not what i want.
How to get output like: [E45A12AC] ?</p>
<p>is it posible with zlib.crc32 do something like:</p>
<pre><code>import hashlib
m = hashlib.md5()
for line in open('data.txt', 'rb'):
m.update(line)
print m.hexdigest()
</code></pre>
http://stackoverflow.com/questions/847450/checksum-calculation0checksum calculationratan2009-05-11T09:59:47Z2009-11-12T13:47:09Z
<p>To calculate CRC I found a piece of code but I am not understanding the concept.
Here is the code: </p>
<pre><code>count =128 and ptr=some value;
</code></pre>
<pre><code>calcrc(unsigned char *ptr, int count)
{
unsigned short crc;
unsigned char i;
crc = 0;
while (--count >= 0)
{
crc = crc ^ (unsigned short)*ptr++ << 8;
i = 8;
do
{
if (crc & 0x8000)
crc = crc << 1 ^ 0x1021;
else
crc = crc << 1;
} while(--i);
}
return (crc);
}
</code></pre>
<p>Please any body explain and tell me the logic. </p>
http://stackoverflow.com/questions/1666676/protect-c-output-filepe-file-from-editing-using-crc0protect c++ output file(pe file) from editing using crcWaheedoo2009-11-03T11:07:14Z2009-11-03T12:29:59Z
<p>How to protect c++ output file(pe file) from editing using crc(Cyclic Redundancy Check)?</p>
<pre><code> **Best Regards**
</code></pre>
http://stackoverflow.com/questions/1514040/reversing-crc321Reversing CRC32pat2009-10-03T15:26:09Z2009-10-22T15:28:18Z
<p>I'm looking for a way to reverse <a href="http://en.wikipedia.org/wiki/Cyclic%5Fredundancy%5Fcheck" rel="nofollow">a CRC32 checksum</a>. There are solutions around, but they are either <a href="http://www.gamerzplanet.net/forums/gunz-hacks-bots-discussion/233326-release-tut-how-to-reverse-crc.html" rel="nofollow">badly written</a>, <a href="http://www.woodmann.com/fravia/crctut1.htm" rel="nofollow">extremely technical</a> and/or <a href="http://www.reversing.be/article.php?story=20061209172739930" rel="nofollow">in Assembly</a>. Assembly is (currently) beyond my ken, so I'm hoping someone can piece together an implementation in a higher level language. Ruby is ideal, but I can parse PHP, Python, C, Java, etc.</p>
<p>Any takers?</p>
http://stackoverflow.com/questions/344961/how-do-you-compute-the-xor-remainder-used-in-crc0How do you compute the XOR Remainder used in CRC?Jeremiah2008-12-05T20:06:04Z2009-10-14T19:35:45Z
<p>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.</p>
<p>I shouldn't have tossed that text book.</p>
<p>This is easily done in code, but how is it worked out by hand?</p>
<p>I know it looks something like a standard division algorithm, but I can't remember where to go from there to get the remainder. </p>
<pre><code> ___________
1010 | 101101000
</code></pre>
<p><strong>Note:</strong> I did google it, but wasn't able to find a place where they mapped the steps in figuring the remainder.</p>
http://stackoverflow.com/questions/1548366/python-way-to-do-crc32b0Python way to do crc32bRagnagard2009-10-10T16:20:06Z2009-10-10T18:38:58Z
<p>Hi all!</p>
<p>As i posted as title, there is a way to use the crc32b hash on python natively or through a library (i.e. chilkat)?</p>
<p>My intention is to "translate" a program from php to python, so output should be same as in php:</p>
<p>$hashedData= hash('crc32b',$data);</p>
<p>-> Edit: in a win32 system</p>
<p>Thanks to all ;)</p>
http://stackoverflow.com/questions/167667/how-to-change-nsis-error-message-about-crccheck0How to change NSIS Error message about CRCChecklevhita2008-10-03T16:16:12Z2009-10-09T05:00:02Z
<p>Some of my users are complaining about some odd errors my installers had after downloading them from my web server.</p>
<p>This are NSIS installer that when downloaded came crippled or incomplete (usually because of slow Internet connections), the message is very clear "The installer you are trying to use is corrupted or incomplete....." IN ENGLISH!! (Did I mention my users only speak Spanish?).</p>
<p>How do I change the language or create custom error messages?</p>
<p>I already create the installer in Spanish by using:</p>
<pre><code>; Language files
!insertmacro MUI_LANGUAGE "Spanish"
</code></pre>
<p>Any Idea?</p>
http://stackoverflow.com/questions/1515914/crc32-collision0CRC32 CollisionMike2009-10-04T08:25:47Z2009-10-05T12:11:17Z
<p>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 doing a brute force attack?</p>
<p>Any links to websites with hints on this will be helpful. I already have a brute force algorithm that will do this but it simply increment integers and sees if it will match other hashes.</p>
http://stackoverflow.com/questions/1426307/performance-of-computing-crc1Performance of Computing CRCxopht2009-09-15T10:21:26Z2009-09-15T10:30:09Z
<pre><code>#include "windows.h"
#include <string>
#include <iostream>
unsigned long crc32_table[] = {
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419,
0x706AF48F, 0xE963A535, 0x9E6495A3, 0x0EDB8832, 0x79DCB8A4,
0xE0D5E91E, 0x97D2D988, 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07,
0x90BF1D91, 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE,
0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7, 0x136C9856,
0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, 0x14015C4F, 0x63066CD9,
0xFA0F3D63, 0x8D080DF5, 0x3B6E20C8, 0x4C69105E, 0xD56041E4,
0xA2677172, 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B,
0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940, 0x32D86CE3,
0x45DF5C75, 0xDCD60DCF, 0xABD13D59, 0x26D930AC, 0x51DE003A,
0xC8D75180, 0xBFD06116, 0x21B4F4B5, 0x56B3C423, 0xCFBA9599,
0xB8BDA50F, 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924,
0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D, 0x76DC4190,
0x01DB7106, 0x98D220BC, 0xEFD5102A, 0x71B18589, 0x06B6B51F,
0x9FBFE4A5, 0xE8B8D433, 0x7807C9A2, 0x0F00F934, 0x9609A88E,
0xE10E9818, 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01,
0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, 0x6C0695ED,
0x1B01A57B, 0x8208F4C1, 0xF50FC457, 0x65B0D9C6, 0x12B7E950,
0x8BBEB8EA, 0xFCB9887C, 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3,
0xFBD44C65, 0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2,
0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB, 0x4369E96A,
0x346ED9FC, 0xAD678846, 0xDA60B8D0, 0x44042D73, 0x33031DE5,
0xAA0A4C5F, 0xDD0D7CC9, 0x5005713C, 0x270241AA, 0xBE0B1010,
0xC90C2086, 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F,
0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, 0x59B33D17,
0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD, 0xEDB88320, 0x9ABFB3B6,
0x03B6E20C, 0x74B1D29A, 0xEAD54739, 0x9DD277AF, 0x04DB2615,
0x73DC1683, 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8,
0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1, 0xF00F9344,
0x8708A3D2, 0x1E01F268, 0x6906C2FE, 0xF762575D, 0x806567CB,
0x196C3671, 0x6E6B06E7, 0xFED41B76, 0x89D32BE0, 0x10DA7A5A,
0x67DD4ACC, 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5,
0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, 0xD1BB67F1,
0xA6BC5767, 0x3FB506DD, 0x48B2364B, 0xD80D2BDA, 0xAF0A1B4C,
0x36034AF6, 0x41047A60, 0xDF60EFC3, 0xA867DF55, 0x316E8EEF,
0x4669BE79, 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236,
0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F, 0xC5BA3BBE,
0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, 0xC2D7FFA7, 0xB5D0CF31,
0x2CD99E8B, 0x5BDEAE1D, 0x9B64C2B0, 0xEC63F226, 0x756AA39C,
0x026D930A, 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713,
0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38, 0x92D28E9B,
0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21, 0x86D3D2D4, 0xF1D4E242,
0x68DDB3F8, 0x1FDA836E, 0x81BE16CD, 0xF6B9265B, 0x6FB077E1,
0x18B74777, 0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C,
0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45, 0xA00AE278,
0xD70DD2EE, 0x4E048354, 0x3903B3C2, 0xA7672661, 0xD06016F7,
0x4969474D, 0x3E6E77DB, 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66,
0x37D83BF0, 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9,
0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, 0xBAD03605,
0xCDD70693, 0x54DE5729, 0x23D967BF, 0xB3667A2E, 0xC4614AB8,
0x5D681B02, 0x2A6F2B94, 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B,
0x2D02EF8D
};
unsigned long repeat = 0;
unsigned long GetCRC(const std::string& strFilepath)
{
unsigned long crc = 0;
FILE* fp = NULL;
if (fopen_s(&fp, strFilepath.c_str(), "rb") == 0 && fp != NULL)
{
crc ^= 0xFFFFFFFF;
char c[ 655360 ];
int size;
while ( size = fread(&c, 1, sizeof(c), fp) )
{
++repeat;
std::cout << repeat << std::endl;
for ( int i = 0; i < size; ++i )
{
crc = (crc >> 8) ^ crc32_table[(crc ^ c[i]) & 0xFF];
}
}
crc ^= 0xFFFFFFFF;
fclose(fp);
}
return crc;
}
#include <mmsystem.h>
int _tmain(int argc, _TCHAR* argv[])
{
DWORD t0, t1;
unsigned long crc;
t0 = timeGetTime();
crc = GetCRC(argv[1]);
t1 = timeGetTime();
printf( "CRC : %X, time : %f sec\n", crc, (t1-t0)/1000.0f );
return 0;
}
</code></pre>
<p>I'm getting CRC value using above code. My problem is that its difference is too big. If I test 1GB file, first time, it took about <strong>90 seconds</strong> and second time, it took about <strong>3 seconds</strong>. I think there may be something like cache. At first time, hard-disk-read-LED was <strong>ON</strong> and at second time, the LED was <strong>not ON</strong>. After some seconds later, it took about 90 seconds again.</p>
<p>How this can be happen such a wide range of difference? </p>
<p>I'm using Windows XP Professional with Service Pack 3 and Core2(2.6GHz) with 2GB of RAM. Before I test, I terminated most of my application except some file explorer and Putty(terminal client). CPU usage was almost zero and PF usage was about 1GB.</p>
http://stackoverflow.com/questions/1323178/error-detection-effiency-crc-checksum-etc2Error Detection Effiency (CRC, Checksum, etc)Bua2009-08-24T15:49:15Z2009-08-24T16:20:26Z
<p>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 error in a few bits in a row.</p>
<p>At first I thought of using a checksum, but apparently that can miss bit errors larger than a single bit. A parity check won't work either so CRC might be the best option.</p>
<p>Is using a Cyclic Redundancy Check on a thousand bytes efficient? Or are there other methods that would work better?</p>
http://stackoverflow.com/questions/1194630/should-i-use-crc-16-or-ip-checksum-rfc1071-for-an-embedded-application2Should I use CRC-16 or IP checksum (RFC1071) for an embedded application?florin2009-07-28T14:49:02Z2009-07-31T01:20:23Z
<p>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 which of the two CRCs would be better suited for the purpose. The main trade-off are code speed versus robustness. Should I consider another CRC? Do you have a link to an efficient implementation for ARM?</p>
http://stackoverflow.com/questions/1184441/shorter-guid-using-crc1Shorter GUID using CRCbriggins52009-07-26T12:24:02Z2009-07-26T13:49:53Z
<p>Hi,</p>
<p>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 and (correct me if i am wrong) not really URL friendly.</p>
<p>I was wondering if i produced a unique idnetifier on the ASP page then hashed it using CRC (or something similar) if it would still be as unique (or even unique at all) as just a GUID.</p>
<p>For example:</p>
<p>The GUID 6f1a7841-190b-4c7a-9f23-98709b6f8848 equals CRC E6DC2D44.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/688725/runtime-crc-checking1Runtime CRC checkingHaimanti Mandal2009-03-27T06:21:21Z2009-07-16T19:04:02Z
<p>Q.
I have a hex code running on a machine. How do I calculate the checksum of the entire code at runtime?</p>
http://stackoverflow.com/questions/1104645/how-to-calculate-crc8-in-java0How to Calculate CRC8 in JavaLava2009-07-09T15:29:24Z2009-07-09T15:35:21Z
<p>I have a binary String of "011001000010100100100010001000100100100100", how do I calculate CRC8? Thanks</p>
http://stackoverflow.com/questions/1103104/python-data-file-crc0Python data/file Crckjfletch2009-07-09T10:33:02Z2009-07-09T10:52:42Z
<p>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 more standard way to do it within the Python libs?</p>
<p>The value generated does not need to be of any particular standard.</p>
http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm5How could I guess a checksum algorithm?dpavlin2008-09-29T16:56:37Z2009-07-08T14:33:21Z
<p>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.</p>
<p>For a start, from dump data I can see that one byte change in the packet's payload totally changes the checksum, so I can assume that it isn't some kind of simple XOR or sum.</p>
<p>Then I tried <a href="http://svn.rot13.org/index.cgi/RFID/view/guess-crc.pl" rel="nofollow">several variations of CRC16</a>, but without much luck.</p>
<p>This question might be more biased towards cryptography, but I'm really interested in any easy to understand statistical tools to find out which CRC this might be. I might even turn to <a href="http://lcamtuf.coredump.cx/newtcp/" rel="nofollow">drawing different CRC algorithms</a> if everything else fails.</p>
<p>Backgroud story: I have serial RFID protocol with some kind of checksum. I can replay messages without problem, and interpret results (without checksum check), but I can't send modified packets because device drops them on the floor. </p>
<p>Using existing software, I can change payload of RFID chip. However, unique serial number is immutable, so I don't have ability to check every possible combination. Allthough I could generate dumps of values incrementing by one, but not enough to make exhaustive search applicable to this problem.</p>
<p><a href="http://www.bljak.org/~dpavlin/rfid-serial-dump.tar.gz" rel="nofollow">dump files with data</a> are available if question itself isn't enough :-)</p>
<p><strong>Need reference documentation?</strong> <a href="http://www.geocities.com/SiliconValley/Pines/8659/crc.htm" rel="nofollow">A PAINLESS GUIDE TO CRC ERROR DETECTION ALGORITHMS</a> is great reference which I found after asking question here.</p>
<p>In the end, after very helpful hint in accepted answer than it's CCITT, I
<a href="http://www.zorc.breitbandkatze.de/crc.html" rel="nofollow">used this CRC calculator</a>, and xored generated checksum with known checksum to get 0xffff which led me to conclusion that final xor is 0xffff instread of CCITT's 0x0000.</p>
http://stackoverflow.com/questions/996843/when-is-crc-more-appropriate-to-use-than-md5-sha19When is CRC more appropriate to use than MD5/SHA1?Gili2009-06-15T15:43:51Z2009-06-17T09:01:47Z
<p>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?</p>
http://stackoverflow.com/questions/997232/crc-error-correction-library1CRC error-correction library?Gili2009-06-15T17:05:18Z2009-06-15T19:24:10Z
<p>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.</p>
http://stackoverflow.com/questions/964177/what-is-a-running-crc2What is a running CRC?Alan Haggai Alavi2009-06-08T10:07:22Z2009-06-08T12:10:35Z
<p>I have searched and am not able to find information on what it is and how it is computed.</p>
http://stackoverflow.com/questions/283556/tricky-crc-algorithm2tricky crc algorithmandrewo2008-11-12T10:39:31Z2009-05-11T13:44:33Z
<p>Hi,</p>
<p>I am trying to find the crc that works with the following results. The byte string consists of 4 bytes (ie. CE1E) and the crc is an single byte (ie. 03)</p>
<pre>
byte crc
CE1E 03
CE20 45
CE22 6F
0000 C0
0001 D4
FFFF 95
</pre>
<p>Can anyone help?</p>
http://stackoverflow.com/questions/117942/tinyos-cc2420receivep1TinyOS CC2420ReceivePmike2008-09-22T22:12:00Z2009-05-09T20:10:03Z
<p>I want to hold onto packets that fail the crc check. To do this I have commented out a section of the CC2420RecieveP readDone function that checks the msb bit of the LQI byte in the received buffer.</p>
<p>I think this is working,</p>
<p>However, once I receive the packet in my own receive function I send it through the serial component (not just the payload, I copy the whole received radio packet into the payload area of the serial packet).
When I use the program Listen, it seems that the crc bool value is not there (only the LQI and RSSI) even though the crc is clearly copied into the bufPTR in the function receiveDone_task.</p>
<p>:(</p>
<p>Help!</p>
<p>Mike.</p>
http://stackoverflow.com/questions/732896/crc-calculation-in-java0CRC calculation in Javarupeshkumar2009-04-09T05:13:05Z2009-04-09T09:29:10Z
<p>Hi,
i'm readin file from serialport using x-modem protocol and 133 bytes packet i'm reading
in that 1 byte is SOH
2 byte packet number
3 byte nagative of packet number
next 128 bytes data
2 bytes CRC sent from other side.</p>
<p>i've to calculate CRC of 128 bytes data and 2 bytes crc sent form other side that i've to make it single byte and have to comapare with my calculated crc,how can do this in java plz give sample code.</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/648732/java-unsigned-char-array0Java Unsigned Char Arraygrossmae2009-03-15T22:47:16Z2009-03-15T23:14:59Z
<p>I'm working on a project fuzzing a media player. I wrote the file generator in Java and converted the CRC generator from the original compression code written in C. I can write data fine with DataOutputStream, but I can't figure out how to send the data as an unsigned character array in java. In C this is a very straightforward process. I have searched for a solution pretty thoroughly, and the best solution I've found is to just send the data to C and let C return a CRC. I may just not be searching correctly as I'm pretty unfamiliar with this stuff. Thank you very much for any help.</p>
http://stackoverflow.com/questions/577787/crc-calculation1CRC CalculationJeff2009-02-23T14:24:51Z2009-02-23T23:11:36Z
<p>I'm trying to interface with a 3rd party system and they have provided a code sample to calculate a CRC value when sending text data. </p>
<p>The C code the vendor provided looks like this:</p>
<pre><code>#define CRCRES 0xf0b8 /* residue for good verify */
#define DEBUG
unsigned crctbl[] = {0x0000, 0x1081, 0x2102, 0x3183,
0x4204, 0x5285, 0x6306, 0x7387,
0x8408, 0x9489, 0xa50a, 0xb58b,
0xc60c, 0xd68d, 0xe70e, 0xf78f};
/*
* This uses a 32 byte table to lookup the crc 4 bits at a time.
* The CRC CCITT is used.
*/
unsigned short calc_crc(unsigned char *ptr, unsigned length)
{
unsigned short crc;
unsigned short i;
unsigned char pos,ch;
crc = 0xffff; /* precondition crc */
for (i = 0; i < length; i++,ptr++) {
ch = *ptr;
pos = (crc ^ ch) & 15;
crc = ((crc >> 4) & 0x0fff) ^ crctbl[pos];
ch >>= 4;
pos = (crc^ch) & 15;
crc = ((crc >> 4) & 0xffff) ^ crctbl[pos];
}
crc = ~crc; /* post condition */
crc = (crc << 8) | (crc >> 8); /* bytewise reverse */
return crc;
}
/*
* tests the block of code containing the crc to verify it's
* content. This compares to the reversed and inverted
* residue.
*/
int test_crc(unsigned char *ptr, unsigned length)
{
unsigned short crc;
unsigned char arr [] = {'X','Y','Z'};
crc = calc_crc(arr,3);
printf("Calced crc of test to be %04x, (should be 470f)\n", crc);
return (crc == 0x470f);
}
</code></pre>
<p>I've copied this code and put in a sample C program. The test_crc method is not calculating the CRC to be 470f (its calculating it as DD7A). </p>
<p>I'm hoping someone can either verify that this code doesn't work as the vendor is saying it should or help me get test_crc to return the correct value.</p>
<p>Thanks for the help.</p>
http://stackoverflow.com/questions/539488/how-would-i-get-a-hash-value-of-a-users-file-with-javascript-or-flash2How would I get a Hash value of a users file with Javascript or Flash?Stephen Belanger2009-02-12T00:19:11Z2009-02-12T03:27:05Z
<p>What I need to do is provide a file browser box on a web page where a user selects a file from their computer and, through javascript (or flash if necessary), some sort of Hash is returned such as CRC, MD5 or SHA1. I would prefer not to have to upload the entire file to the web server, as I expect some rather large files to be used in this.</p>
<p>Basically I am making a script that associates these values with META data of sorts, allowing the files to be identified without having to be uploaded completely.</p>
<p>Any idea how I would go about doing this? It'd be easy for me to do it on the server side, but, as I said, there will be some rather large files checked and I don't want to eat up too much of the server's bandwidth.</p>
http://stackoverflow.com/questions/507041/crc8-check-in-php1CRC8-Check in PHPLancelot2009-02-03T13:22:38Z2009-02-03T21:14:34Z
<p>How can I generate a CRC-8 checksum in PHP?</p>
http://stackoverflow.com/questions/401231/determining-crc-algorithm-from-data-crc-embedded-application4Determining CRC algorithm from data + CRC - embedded application. mattbarn2008-12-30T19:33:11Z2009-01-07T19:23:22Z
<p>Hello,</p>
<p>I have a set of data protected by 16bit checksums that I need to correct. The checksum locations are known, the exact areas they are calculated on and the exact algorithm used to calculate them are not. 16bit, LSB first. I suspect it's some sort of 16bit CRC, but I have not been able to find the code that's actually calculating the checksums. </p>
<p>Example:</p>
<pre><code>00 4E00FFFF26EC14091E00A01830393630
10 30313131313030393030363030313030
20 30303131313030393030363030313030
30 30303131313030393030363030313030
40 3030FFFF225E363436304D313037**0CE0**
50 64000000000000008080808080800000
60 00000000**BE6E**FC01E001EB0013010500
</code></pre>
<p>Checksums are stored at 4E and 64. I don't know if they are calcuated starting from the offset in the first word at the beginning of each data section or starting after that, or on the whole range. I have tried a number of common CRC algorithms and polynomials with no luck. There are no references or specifications available for this application. </p>
<p>Here is another data section with different CRCs for comparison's sake. </p>
<pre><code>00 4E00FFFF26C014091600A01030393132
10 30313131313030393030313230313030
20 30303131313030393030313230313030
30 30303131313030393030313230313030
40 3030FFFF225E343231324F313044**8348**
50 64000000000000008080808080800000
60 00000000**72F8**E001EB00130105000E01
</code></pre>
<p>My question is, can anyone identify the algorithm? Is there any way to calculate the CRC polynomial and other factors from the data and the CRC? </p>
<p>Thanks!</p>
<p>Edit: </p>
<p>A search of my disassembly for the common CRC16 polynomial 0xA001 revealed this function:</p>
<pre><code>34F86 ; =============== S U B R O U T I N E =======================================
34F86
34F86
34F86 Possible_Checksum: ; CODE XREF: MEM_EXT_4:00034FEEP
34F86 ; MEM_EXT_4:0003503AP ...
34F86 mov [-r0], r9 ; Move Word
34F88 mov r4, r12 ; Move Word
34F8A mov r5, r13 ; Move Word
34F8C shr r4, #14 ; Shift Right
34F8E shl r5, #2 ; Shift Left
34F90 or r5, r4 ; Logical OR
34F92 mov r4, r12 ; Move Word
34F94 mov DPP0, r5 ; Move Word
34F98 and r4, #3FFFh ; Logical AND
34F9C movb rl3, [r4] ; Move Byte
34F9E mov DPP0, #4 ; Move Word
34FA2 movbz r9, rl3 ; Move Byte Zero Extend
34FA4 mov r15, #0 ; Move Word
34FA6
34FA6 loc_34FA6: ; CODE XREF: MEM_EXT_4:00034FC8j
34FA6 mov r4, [r14] ; Move Word
34FA8 xor r4, r9 ; Logical Exclusive OR
34FAA and r4, #1 ; Logical AND
34FAC jmpr cc_Z, loc_34FBA ; Relative Conditional Jump
34FAE mov r4, [r14] ; Move Word
34FB0 shr r4, #1 ; Shift Right
34FB2 xor r4, #0A001h ; Logical Exclusive OR
34FB6 mov [r14], r4 ; Move Word
34FB8 jmpr cc_UC, loc_34FC0 ; Relative Conditional Jump
34FBA ; ---------------------------------------------------------------------------
34FBA
34FBA loc_34FBA: ; CODE XREF: MEM_EXT_4:00034FACj
34FBA mov r4, [r14] ; Move Word
34FBC shr r4, #1 ; Shift Right
34FBE mov [r14], r4 ; Move Word
34FC0
34FC0 loc_34FC0: ; CODE XREF: MEM_EXT_4:00034FB8j
34FC0 ashr r9, #1 ; Arithmetic Shift Right
34FC2 add r15, #1
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm1How could I guess a checksum algorithm?Tom2008-11-18T12:22:45Z2008-11-25T08:46:38Z
<p>Hi, does anybody know how to figure out the CRC algorithm if a given code + CRC string is given? I have got several strings consisting of code + matching CRCs but don´t know how to calculate the CRC in question so that I could produce more code strings. Here are some samples (16bit code + 4bit CRC):</p>
<p>0010101000011101 + 0000<br>
0010101000011111 + 0001<br>
1000110011101101 + 0001<br>
0000000000000100 + 0010<br>
0011100011001110 + 0011<br>
1000110011101110 + 0100<br>
0001011110101100 + 0100<br>
0010101000011110 + 0101<br>
0011100011001101 + 0110<br>
0001011110101111 + 0111<br>
0011100011001100 + 1001<br>
0011100011001111 + 1010<br>
0001011110101101 + 1011<br>
0000000000001000 + 1011<br>
0000111100001101 + 1100<br>
0000000000001100 + 1100<br>
1111111111111111 + 1101<br>
1000110011101111 + 1101<br>
1000110011101100 + 1110<br>
0001011110101110 + 1110<br>
1111111100001101 + 1110<br>
0010101000011100 + 1111<br>
<br>
These codes come from a RF (433MHz) sender like the X10 products.</p>
<p>Hopefully there is someone out there that can help me!!</p>
<p>I am not sure if this is a CRC or what it is, but at least it calculated somehow out of those code strings.</p>
<p>//Tom</p>
http://stackoverflow.com/questions/241605/crc-preset-and-residue3CRC preset and residueMike2008-10-27T22:33:57Z2008-10-29T18:48:27Z
<p>Hi, I am working with a device that requires me to generate a 16 bit CRC.</p>
<p>The datasheet for the device says it needs the following CRC Definition:</p>
<pre>
CRC Type Length Polynomial Direction Preset Residue
CRC-CCITT 16 bits x16 + x12 + x5 + 1 Forward FFFF (16) 1D0F (16)
</pre>
<p>where preset=FFFF (16 bit) and Residue=1D0F (16 bit)</p>
<p>I searched for a CRC algorithm and found this link:
<a href="http://www.lammertbies.nl/comm/info/crc-calculation.html" rel="nofollow">http://www.lammertbies.nl/comm/info/crc-calculation.html</a></p>
<p>It has both on it.
CRC-CCITT (0xFFFF)
CRC-CCITT (0x1D0F)</p>
<p>What's the difference between the preset and the residue?</p>