Base64 encoding of binary data added

This commit is contained in:
dukesrg 2015-04-29 23:00:27 +03:00
parent f138c2b752
commit 2b19b60944

View File

@ -65,7 +65,9 @@ function geturl(obj) {
c+=b.pop();
}
}
v += c;
a=c.match(/..?/g);
for(c in a)a[c]=parseInt(a[c],16);
v += btoa(String.fromCharCode.apply(null,a));
}
}
return '/3ds/rop?' + v;