Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I find myself needing to generate a checksum for a string of data, for consistency purposes. The broad idea is that the client can regenerate the checksum based on the payload it recieves and thus detect any corruption that took place in transit. I am vaguely aware that there are all kinds of mathematical principles behind this kind of thing, and that it's very easy for subtle errors to make the whole algorithm ineffective if you try to roll it yourself.

So I'm looking for advice on a hashing/checksum algorithm with the following criteria:

  • It will be generated by Javascript, so needs to be relatively light computationally.
  • The validation will be done by Java (though I cannot see this actually being an issue).
  • It will take textual input (URL-encoded Unicode, which I believe is ASCII) of a moderate length; typically around 200-300 characters and in all cases below 2000.
  • The output should be ASCII text as well, and the shorter it can be the better.

I'm primarily interested in something lightweight rather than getting the absolute smallest potential for collisions possible. Would I be naive to imagine that an eight-character hash would be suitable for this? I should also clarify that it's not the end of the world if corruption isn't picked up at the validation stage (and I do realise that this will not be 100% reliable), though the rest of my code is markedly less efficient for every corrupt entry that slips through.

Edit - thanks to all that contributed. I went with the Adler32 option and given that it was natively supported in Java, extremely easy to implement in Javascript, fast to calculate at both ends and have an 8-byte output it was exactly right for my requirements.

(Note that I realise that the network transport is unlikely to be responsible for any corruption errors and won't be folding my arms on this issue just yet; however adding the checksum validation removes one point of failure and means we can focus on other areas should this reoccur.)

share|improve this question
So the whole TCP/IP checksum thing isn't working... I'm thinking that anything corrupted in transit is going to get rejected at a much lower layer than the application level. – tvanfosson Jan 7 '09 at 18:50
Yeah, this sounds like something usually left to the transport layer. Can you explain your scenario a little more? Where is your data being sent and what specific causes of data corruption are you trying to guard against? – C. Dragon 76 Jan 7 '09 at 19:19
@dtsazza - you mentioned in a comment below that this is for security (malicious users). Can you elaborate? Especially since this will probably run in a browser. – orip Jan 7 '09 at 22:01

7 Answers

up vote 10 down vote accepted

CRC32 is not too hard to implement in any language, it is good enough to detect simple data corruption and when implemted in a good fashion, it is very fast. However you can also try Adler32, which is almost equally good as CRC32, but it's even easier to implement (and about equally fast).

Adler32 in the Wikipedia

CRC32 JavaScript implementation sample

Either of these two (or maybe even both) are available in Java right out of the box.

share|improve this answer
CRC32, definitely was designed to be exactly what you describe. – Die in Sente Jan 7 '09 at 19:00
1  
A word of caution: the JavaScript in the link implements the algorithm with a table[256] of literal values. If you should modify even a single digit of that table, you will have a nasty bug that is very, very, hard to find! I prefer implementations that generate the table on the 1st call. – Die in Sente Jan 7 '09 at 19:02
I'll second @D.i.S's comment. Testability is a minus. – Jason S Jan 7 '09 at 20:11

Are aware that both TCP and UDP (and IP, and Ethernet, and...) already provide checksum protection to data in transit?

Unless you're doing something really weird, if you're seeing corruption, something is very wrong. I suggest starting with a memory tester.

Also, you receive strong data integrity protection if you use SSL/TLS.

share|improve this answer
Yes, I am was aware of that, though you were right to point it out. Unfortunately it's in input coming from the world at large, so we need to be able to cope with this anyway (malicious/mischevious users could mangle this for example). – Andrzej Doyle Jan 7 '09 at 20:36
It might be worth pointing out that for any change-detection algorithm, there is always a chance that it won't detect an error. They all can have collisions or false-negatives, though usually the more expensive algorithms reduce this chance to near-astronomically small probabilities. – Alan Krueger Jan 7 '09 at 21:11
3  
@dtsazza: I wonder about the malicious/mischievous users who can mangle packets going across the network, but can't defeat Javascript. Or Adler32. – derobert Jan 9 '09 at 3:25

Other people have mentioned CRC32 already, but here's a link to the W3C implementation of CRC-32 for PNG, as one of the few well-known, reputable sites with a reference CRC implementation.

(A few years back I tried to find a well-known site with a CRC algorithm or at least one that cited the source for its algorithm, & was almost tearing my hair out until I found the PNG page.)

share|improve this answer

[UPDATE 30/5/2013: The link to the old JS CRC32 implementation died, so I've now linked to a different one.]

Google CRC32: fast, and much lighter weight than MD5 et al. There is a Javascript implementation here.

share|improve this answer
   
Link now broken unfortunately. – James Westgate May 30 at 10:50
@JamesWestgate: Thanks James, I've found a new one and linked to that. Incidentally the first JS version I found (at noteslog.com/post/crc32-for-javascript) actually reparses part of the string containing the table for each character processed, which will make it much slower than necessary. – j_random_hacker May 30 at 15:21
Awesome! Thanks :) Looking for something to checksum javascript functions for a browser based animation code generation tool. – James Westgate May 30 at 19:08

Use SHA-1 JS implementation. It's not as slow as you think (Firefox 3.0 on Core 2 Duo 2.4Ghz hashes over 100KB per second).

share|improve this answer

Here's a relatively simple one I've 'invented' - there's no mathematical research behind it but it's extremely fast and works in practice. I've also included the Java equivalent that tests the algorithm and shows that there's less than 1 in 10,000,000 chance of failure (it takes a minute or two to run).

JavaScript

function getCrc(s) {
    var result = 0;
    for(var i = 0; i < s.length; i++) {
        var c = s.charCodeAt(i);
        result = (result << 1) ^ c;
    }
    return result;
}

Java

package test;

import java.util.*;

public class SimpleCrc {

    public static void main(String[] args) {
        final Random randomGenerator = new Random();
        int lastCrc = -1;
        int dupes = 0;
        for(int i = 0; i < 10000000; i++) {
            final StringBuilder sb = new StringBuilder();
            for(int j = 0; j < 1000; j++) {
                final char c = (char)(randomGenerator.nextInt(128 - 32) + 32);
                sb.append(c);
            }
            final int crc = crc(sb.toString());
            if(lastCrc == crc) {
                dupes++;
            }
            lastCrc = crc;
        }
        System.out.println("Dupes: " + dupes);
    }

    public static int crc(String string) {
        int result = 0;
        for(final char c : string.toCharArray()) {
            result = (result << 1) ^ c;
        }
        return result;
    }
}
share|improve this answer
This is absolute bullshit, this has a 17,5% collision rate. I guess "Here's a relatively simple one I've 'invented' - there's no mathematical research behind it" explains why that is. The scary part is that the included test doesn't show the problem. – grand johnson Jun 15 at 12:02
Why? Would you like to share an example? – Keith Whittingham Jun 16 at 13:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.