$encoded = encode_base64('Aladdin:open sesame');
$decoded = decode_base64($encoded);
perl has strings, not byte arrays, so we use the MIME::Base64 CPAN module to encode or decode strings to base 64. If the bytes were in an array (i.e. a perl list) then we could just concatenate them beforehand into a string using join '', @list.