Help for this page

Select Code to Download


  1. or download this
    binmode INBIN;
    my $n_bytes = read(INBIN, $buff, $BUFSIZE);
    
  2. or download this
    use MIME::Base64;
    use strict;
    ...
    my $base64 = encode_base64(pack('B*', $binary));
        
    print "base64 = $base64\n";