/tatamiJS/patches/Blowfish.patch

http://tatami.googlecode.com/ · Patch · 41 lines · 37 code · 4 blank · 0 comment · 0 complexity · a28b29a09050e85e124f5884c118a26b MD5 · raw file

  1. Index: Blowfish.js
  2. ===================================================================
  3. --- Blowfish.js (revision 15563)
  4. +++ Blowfish.js (working copy)
  5. @@ -343,14 +343,14 @@
  6. var cipher=[], count=plaintext.length >> 3, pos=0, o={}, isCBC=(mode==dojox.encoding.crypto.cipherModes.CBC);
  7. var vector={left:iv.left||null, right:iv.right||null};
  8. for(var i=0; i<count; i++){
  9. - o.left=plaintext.charCodeAt(pos)*POW24
  10. - |plaintext.charCodeAt(pos+1)*POW16
  11. - |plaintext.charCodeAt(pos+2)*POW8
  12. - |plaintext.charCodeAt(pos+3);
  13. - o.right=plaintext.charCodeAt(pos+4)*POW24
  14. - |plaintext.charCodeAt(pos+5)*POW16
  15. - |plaintext.charCodeAt(pos+6)*POW8
  16. - |plaintext.charCodeAt(pos+7);
  17. + o.left=(plaintext.charCodeAt(pos) % 256)*POW24
  18. + |(plaintext.charCodeAt(pos+1) % 256)*POW16
  19. + |(plaintext.charCodeAt(pos+2) % 256)*POW8
  20. + |(plaintext.charCodeAt(pos+3) % 256);
  21. + o.right=(plaintext.charCodeAt(pos+4) % 256)*POW24
  22. + |(plaintext.charCodeAt(pos+5) % 256)*POW16
  23. + |(plaintext.charCodeAt(pos+6) % 256)*POW8
  24. + |(plaintext.charCodeAt(pos+7) % 256);
  25. if(isCBC){
  26. o.left=(((o.left>>0x10)^(vector.left>>0x10))<<0x10)|(((o.left&0xffff)^(vector.left&0xffff))&0xffff);
  27. @@ -469,9 +469,14 @@
  28. // convert to string
  29. return dojo.map(pt, function(item){
  30. + if(item > 127){
  31. + item = 65536 - 256 + item;
  32. + }
  33. return String.fromCharCode(item);
  34. }).join(""); // string
  35. };
  36. this.setIV("0000000000000000", dojox.encoding.crypto.outputTypes.Hex);
  37. }();