aboutsummaryrefslogtreecommitdiffstats
path: root/jsaccess
diff options
context:
space:
mode:
Diffstat (limited to 'jsaccess')
-rw-r--r--jsaccess/jsa/jsa.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/jsaccess/jsa/jsa.js b/jsaccess/jsa/jsa.js
index 67b55b9..45030f8 100644
--- a/jsaccess/jsa/jsa.js
+++ b/jsaccess/jsa/jsa.js
@@ -34,13 +34,6 @@ function _dl(file, pass) {
});
}
-function hex2a(hex) {
- var str = '';
- for (var i = 0; i < hex.length; i += 2)
- str += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
- return str;
-}
-
function _decrypt(obj, pass, name) {
try {
var decrypted = GibberishAES.dec(obj, pass);