How could I guess a checksum algorithm? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T03:06:40Z http://stackoverflow.com/feeds/question/298588 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/298588/how-could-i-guess-a-checksum-algorithm 2 How could I guess a checksum algorithm? Tom 2008-11-18T12:22:45Z 2008-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#298596 2 Answer by mana for How could I guess a checksum algorithm? mana 2008-11-18T12:29:51Z 2008-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#298606 0 Answer by Tom for How could I guess a checksum algorithm? Tom 2008-11-18T12:33:27Z 2008-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#298620 0 Answer by JS for How could I guess a checksum algorithm? JS 2008-11-18T12:40:55Z 2008-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#298643 0 Answer by DrStalker for How could I guess a checksum algorithm? DrStalker 2008-11-18T12:50:35Z 2008-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#298678 0 Answer by Tom for How could I guess a checksum algorithm? Tom 2008-11-18T13:10:59Z 2008-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#298694 2 Answer by Mecki for How could I guess a checksum algorithm? Mecki 2008-11-18T13:18:54Z 2008-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#298709 0 Answer by jalf for How could I guess a checksum algorithm? jalf 2008-11-18T13:27:38Z 2008-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#298740 0 Answer by Tom for How could I guess a checksum algorithm? Tom 2008-11-18T13:41:32Z 2008-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#299955 1 Answer by nicerobot for How could I guess a checksum algorithm? nicerobot 2008-11-18T20:07:52Z 2008-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#300002 0 Answer by Keegan Carruthers-Smith for How could I guess a checksum algorithm? Keegan Carruthers-Smith 2008-11-18T20:21:19Z 2008-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#301720 0 Answer by Tom for How could I guess a checksum algorithm? Tom 2008-11-19T12:16:45Z 2008-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#316720 0 Answer by Tom for How could I guess a checksum algorithm? Tom 2008-11-25T08:46:38Z 2008-11-25T08:46:38Z <p>I added a comment to the first post.</p>