in reply to Re: Base64 and byte arrays
in thread Base64 and byte arrays
No need to split and then rejoin the string:
use MIME::Base64 qw( decode_base64 ); ( my $orig = decode_base64( $_ ) ) =~ s/(.)(?=(.))/ $1 ^ $2 /seg;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Base64 and byte arrays
by ikegami (Patriarch) on Feb 05, 2009 at 03:18 UTC | |
by jwkrahn (Abbot) on Feb 05, 2009 at 04:38 UTC | |
by ikegami (Patriarch) on Feb 05, 2009 at 05:01 UTC |