Logo

Programming-Idioms

  • Pascal

Idiom #307 XOR encrypt/decrypt string

Create a function that XOR encrypts/decrypts a string

sysutils
encrypted := xorstring(key, original);
sub xor_crypt {
    my ($b, $k) = @_;
    return $b ^ $k;
}

Perl's bitwise operator ^ will xor strings.

New implementation...
< >
anonymous