in reply to How to generate 64-character length lines in base64?
sub b6464 { my $orig=shift; my $string = pack("u",$orig); $string =~ s/^.//mg; $string =~ s/\n//g; # use tr to translate from UUE to Base64 $string =~ tr|` -_|AA-Za-z0-9+/|; # fix padding at the end my $padding = (3 - length($orig) % 3) % 3; $string =~ s/.{$padding}$/'=' x $padding/e if $padding; # break string into lines of 64 chars or less $string =~ s/(.{1,64})/$1\n/g; return $string; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to generate 64-character length lines in base64?
by rmichael (Initiate) on Apr 03, 2013 at 11:46 UTC | |
|
Re^2: How to generate 64-character length lines in base64?
by rmichael (Initiate) on Apr 03, 2013 at 12:58 UTC | |
by kschwab (Vicar) on Apr 03, 2013 at 13:42 UTC | |
by rmichael (Initiate) on Apr 03, 2013 at 14:15 UTC |