|
|
|
|
157 |
$unpacked = unpack( TEMPLATE, LIST );
while ( <> ) {
tr#A-Za-z0-9+/##cd; # Remove non-base64 chars
tr#A-Za-z0-9+/# -_#cd; # Convert to uuencoded format
$len = pack( "c", 32 + 0.75*length ); # Compute length byte
print unpack( "u", $len . $_ ); # uudecode and print
}