Hi buddy:
I found a BUG which in generate.js file from line:128, that can make a critical running error!
here's the report:
bytes.push(parseInt(bits.substr(i * 8, i * 8 + 8), 2)) ; // BUG
SHOULD BE :bytes.push(parseInt(bits.substr(i * 8, 8), 2)) ; //this will works well!
here the Syntax:
str.substr(start[, length])