summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjlcooke <jlcooke@certainkey.com>2012-07-13 09:49:16 -0300
committerjlcooke <jlcooke@certainkey.com>2012-07-13 09:49:16 -0300
commitfb89545024d26d2effaa27a23f51d2a580672735 (patch)
treeb26daf5b6aee81354b0148af721ecf961a02ef3b
parentdc7ecc582faf17c27e25c29753811908233ad78c (diff)
downloadgibberish-aes-fb89545024d26d2effaa27a23f51d2a580672735.zip
gibberish-aes-fb89545024d26d2effaa27a23f51d2a580672735.tar.gz
gibberish-aes-fb89545024d26d2effaa27a23f51d2a580672735.tar.bz2
oops - has 2 str8hex's in there.
-rwxr-xr-xsrc/gibberish-aes.js6
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;