How could I guess a checksum algorithm? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T03:06:40Zhttp://stackoverflow.com/feeds/question/298588http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm2How 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/298588/how-could-i-guess-a-checksum-algorithm/298596#2985962Answer by mana for How could I guess a checksum algorithm?mana2008-11-18T12:29:51Z2008-11-18T13:03:39Z<p>Guessing is the very right word. If this RF device is not proprietary, try reading the <strong>specifications</strong>! This would be the easiest way to go.</p>
<p>Guessing all the possible CRC (or Hashing algorithms) does not look too optimistic. Just take a look <a href="http://en.wikipedia.org/wiki/Cyclic_redundancy_check" rel="nofollow">here</a>.</p>
<p>A third possibility is to reverse engineer the code you are using to generate the checksums.</p>
<p>good luck :)</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/298606#2986060Answer by Tom for How could I guess a checksum algorithm?Tom2008-11-18T12:33:27Z2008-11-18T12:33:27Z<p>This is the problem, I don´t have the specifications and I can´t get them anywhere. I have tried several different checksum calculation methods without result, isn´t there a way to compare the input strings finding out what they have in common and this way getting the algorithm</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/298620#2986200Answer by JS for How could I guess a checksum algorithm?JS2008-11-18T12:40:55Z2008-11-18T12:40:55Z<p>There are too many CRC algorithm possibilities to guess effectively. You can take the easy approach, which is finding a Specification for your device. Or you can take the brute force method, which is figuring out the CRC for each possible input, and creating an algorithm that generates the same result.</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/298643#2986430Answer by DrStalker for How could I guess a checksum algorithm?DrStalker2008-11-18T12:50:35Z2008-11-18T12:50:35Z<p>You could try a few common CRC methods and hope to get lucky, but Mana's answer (looking for specs) would be the best choice.</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/298678#2986780Answer by Tom for How could I guess a checksum algorithm?Tom2008-11-18T13:10:59Z2008-11-18T13:10:59Z<p>Yes finding the specifications I also think would be the best solution but since this is no option I need to brute force the checksum calculation somehow.</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/298694#2986942Answer by Mecki for How could I guess a checksum algorithm?Mecki2008-11-18T13:18:54Z2008-11-18T13:28:56Z<p>What makes you think it is a CRC? Usually CRCs are not used for such small pieces of data.</p>
<p>To me this rather looks like some kind of parity, ECC (actually <a href="http://en.wikipedia.org/wiki/Forward_error_correction" rel="nofollow">FEC</a>) or <a href="http://de.wikipedia.org/wiki/Reed-Solomon-Code" rel="nofollow">Reed-Solomon</a> code. Might be <a href="http://en.wikipedia.org/wiki/Hamming_code" rel="nofollow">Hamming Code</a> - Hamming widely used in industry, in telecomunications.</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/298709#2987090Answer by jalf for How could I guess a checksum algorithm?jalf2008-11-18T13:27:38Z2008-11-18T13:27:38Z<p>The entire point in a good checksum algorithm is that it <em>doesn't</em> have anything in common with the input text. You can change one single character in the input. and the <em>entire</em> checksum output will change. So the only way to go the other way is to, yes, guess. If you know what the the input and output strings are, you can try a few common checksum algorithms, and see if any of them give the right output. Other than that, no, it's not possible.</p>
<p>Alternatively, as others have suggested, it may not be a checksum at all, but some kind of error correction/redundancy code, and that might be easier to figure out.</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/298740#2987400Answer by Tom for How could I guess a checksum algorithm?Tom2008-11-18T13:41:32Z2008-11-18T13:41:32Z<p>Probably it is not a CRC, but still I can´t manage to find out the error correction/redundacy algorith.</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/299955#2999551Answer by nicerobot for How could I guess a checksum algorithm?nicerobot2008-11-18T20:07:52Z2008-11-18T20:07:52Z<p><a href="http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm#298694">@mecki</a> might be correct but it's hard to know. You might try <a href="http://idobartana.com/hakb/x10rf.htm" rel="nofollow">Data format for X-10 wireless units</a> and <a href="http://www.nomad.ee/micros/x10faq.html" rel="nofollow">X-10 FAQ</a>.</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/300002#3000020Answer by Keegan Carruthers-Smith for How could I guess a checksum algorithm?Keegan Carruthers-Smith2008-11-18T20:21:19Z2008-11-18T20:21:19Z<p>Judging by the length of the strings versus the length of the checksum, I would say this is a simple 1-error correcting checksum. Its probably one of the simple ones using hamming distances. I can't remember off hand how it worked, and I don't have any information theory/linear algebra textbooks on me.</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/301720#3017200Answer by Tom for How could I guess a checksum algorithm?Tom2008-11-19T12:16:45Z2008-11-19T12:16:45Z<p>I have thought of the hamming code also but haven´t been able to figure it out. Can someone with the knowledge try the hamming code on my strings? Thx</p>
http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm/316720#3167200Answer by Tom for How could I guess a checksum algorithm?Tom2008-11-25T08:46:38Z2008-11-25T08:46:38Z<p>I added a comment to the first post.</p>