Encrypt to Decrypt
#1

pawn Код:
public Encrypt(string[])
{
    for(new x=0; x < strlen(string); x++)
     {
         string[x] += (3^x) * (x % 15);
         if(string[x] > (0xff))
         {
             string[x] -= 256;
         }
     }
    return 1;
}
How do i make a code like this that would decrypt what it encrypted?
Reply
#2

anyone know?
Reply
#3

can anyone help?
Reply
#4

There is no need to un-encrypt things. Just encrypt the string and compare it to the already encrypted one, if that's what you're trying to do.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)