in reply to Re^2: Perl function equivalent to PHP xormask
in thread Perl function equivalent to PHP xormask

If you could please share how you were able to get the constant value

choroba already did:

How did I get the magical value? By XORing the expected output with the $track. That's how XOR works.

i.e.

$ perl -MMIME::Base64 -le 'print decode_base64( "Z0xcAVtKAwkDHVcKVF5TCQ")^"T|808|586|127800"' 30d1c6615af8cfc9

Replies are listed 'Best First'.
Re^4: Perl function equivalent to PHP xormask
by wubbaducki (Initiate) on Mar 20, 2016 at 20:30 UTC
    Thanks very much :)