'ontiecotprg intrS'
I JUST KNOW THIS IS 'String protection' but i have no idea how it works...
lets see..
1,3,2,5,4,7,6,9,8,11,10,13,12,15,14,17,16...
so,its start at the back, go forwards two, back one, forwards two, back one, forwards two, etc, all adding to the begining,
so decryption would be...
String s=encrypted[encrypted.length-1];
int i;
for(i=encrypted.length-3; i>=0; i-=2) {
s+=encrypted[i];
s+=encrypted[i+1];
}
if(i==-1)
s+=encrypted[0];
i think![]()






Reply With Quote






.







. Will do it, 1 moment.


