[Pedido] Anti Encrypt
#4

й sу fazer a operaзгo ao inverso cara.

pawn Код:
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;
}

Decrypt(string[])
{
    for (new i = 0; i < strlen(string); ++i)
    {
        string[i] -= (3 ^ i) * (i % 15);
        if (string[i] > 0xff)
        {
            string[i] -= 256;
        }
    }
}
Reply


Messages In This Thread
Anti Encrypt - by Miineiro - 01.10.2014, 22:31
Re: Anti Encrypt - by ipsLuan - 01.10.2014, 22:40
Re: Anti Encrypt - by Miineiro - 01.10.2014, 22:52
Re: Anti Encrypt - by WLSF - 01.10.2014, 22:58
Re: Anti Encrypt - by ipsLuan - 01.10.2014, 23:10
Re: Anti Encrypt - by WLSF - 01.10.2014, 23:31
Re: Anti Encrypt - by Miineiro - 02.10.2014, 01:30
Re: Anti Encrypt - by PT - 02.10.2014, 02:28
Re: Anti Encrypt - by Miineiro - 02.10.2014, 17:09
Re: Anti Encrypt - by SW1FTmeister - 02.10.2014, 17:34

Forum Jump:


Users browsing this thread: 1 Guest(s)