ThealeMW / slowaes

Slowaes
0 stars 0 forks source link

Typo in cryptoHelpers.js:172 ( base64.decode() ) #7

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Instead of:

   if(c[3] >= 0 && c[2] < 64){

should be:

   if(c[3] >= 0 && c[3] < 64){

Best regards,
Igor.

Original issue reported on code.google.com by igor.erm...@gmail.com on 30 Oct 2009 at 10:31