in reply to Re: Re: A real challenge
in thread A real challenge
my $encodedString = pack('c*', @encoded); my $key = 'Copyright © 2000 ActiveState Tool Corp.'; $key = $key x ( length($encodedString) / length($key) + 1); $key = substr($key, 0, length($encodedString)); print $key ^ $encodedString;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re3: A real challenge
by larryk (Friar) on Jul 16, 2001 at 20:57 UTC |