http://qs1969.pair.com?node_id=11102011


in reply to Question about base64 encoded attributes with Net::LDAP::LDIF

When i need this i use https://metacpan.org/pod/MIME::Base64. As in

use MIME::Base64; $buf='Authorization: Basic '.encode_base64($args{user}.':'.$args{passw +ord},'');
Note the second parm of the empty string.
Pass an empty string as second argument if you do not want the encoded string to be broken into lines.