diff options
author | jlcooke <jlcooke@certainkey.com> | 2012-07-13 09:49:16 -0300 |
---|---|---|
committer | jlcooke <jlcooke@certainkey.com> | 2012-07-13 09:49:16 -0300 |
commit | fb89545024d26d2effaa27a23f51d2a580672735 (patch) | |
tree | b26daf5b6aee81354b0148af721ecf961a02ef3b | |
parent | dc7ecc582faf17c27e25c29753811908233ad78c (diff) | |
download | gibberish-aes-fb89545024d26d2effaa27a23f51d2a580672735.zip gibberish-aes-fb89545024d26d2effaa27a23f51d2a580672735.tar.gz gibberish-aes-fb89545024d26d2effaa27a23f51d2a580672735.tar.bz2 |
oops - has 2 str8hex's in there.
-rwxr-xr-x | src/gibberish-aes.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gibberish-aes.js b/src/gibberish-aes.js index 8e49e61..6b3de7d 100755 --- a/src/gibberish-aes.js +++ b/src/gibberish-aes.js @@ -377,12 +377,6 @@ var GibberishAES = (function(){ }, str8hex = function(str,inv) { var ret = []; - for (i=0; i<str.length; i+=2) - ret[i/2] = parseInt(str.substr(i,2), 16); - return ret; - }, - str8hex = function(str,inv) { - var ret = []; for (i=0; i<str.length; i+=8) ret[i/8] = parseInt(str.substr(i,8), 16); return ret; |