I have a project where I want to compute an MD5 sum in JavaScript but I want to then break it up into chunks (as it happens I want 3 bits at a time). Are there any implementation I can use that make this easy to do? (BTW I already found this MD5 implementation that returns a string.)
Option I've thought of:
- Hack that implementation to emit octal.
- Consume a hex string 3 places at a time and re-slice it.
Anyone know of something simpler?