in reply to Re: Re: Reversible per-line "encryption"
in thread Reversible per-line "encryption"
Read that in a Steven Holznar book ...I think.my $passphrase = "I love group ABC"; … $text ^= $passphrase; $line = $groupID . "\|" . $text; print "$line\n"; … if($group eq $myGroup) { $data ^= $passphrase; } print "$data\n";
|
|---|