Convert PHP/JS into VB6

  • VB6

Es gibt 1 Antwort in diesem Thema. Der letzte Beitrag () ist von MrTrebron.

    Convert PHP/JS into VB6

    Hello, who is able to convert the following 2 lines of php code into VB6:

    php:
    $x = $s[(($i << 5) ^ ($j >> 3)) % 256] + $s[(($j << 5) ^ ($i >> 3)) % 256];
    $res .= $str[$y] ^ chr((($s[($s[$j] + $s[$i]) % 256] + $s[($x ^ 0xAA) % 256]) ^ $s[($j + $s[$i]) % 256]) %
    256);

    Thanks in advance for any assistance in this matter.