Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
582072f7236d97759b14a1176c2f4abfa74212d9
/
.
/
ap
/
lib
/
libcurl
/
curl-7.54.1
/
tests
/
server
/
base64.pl
blob: 2eab1fa4dff48833e8787a79bde88657de7085c6 [
file
] [
log
] [
blame
]
#!/usr/bin/perl
use
MIME
::
Base64
qw
(
encode_base64
);
my
$buf
;
while
(
read
(
STDIN
,
$buf
,
60
*
57
))
{
my
$enc
=
encode_base64
(
$buf
);
print
"$enc"
;
}