We were retrieving a string value for the bytes this way:
function printDigit(d) { return "0123456789abcdef"[d]; };
It is an idiom we should support in the future.
I implemented it on strings... Cause I'm nice :P
It won't work on string objects created using new String(), however.
- Maxime