Convert-Base64
view release on metacpan or search on metacpan
lib/Convert/Base64.pm view on Meta::CPAN
=head1 VERSION
version 0.001
=head1 SYNOPSIS
use Convert::Base64;
$encoded = encode_base64("\x3a\x27\x0f\x93");
$decoded = decode_base64($encoded);
=head1 DESCRIPTION
This module provides functions to convert strings to/from the Base64 encoding
as described in RFC 4648.
Its implemented as a light wrapper over L<MIME::Base64>.
=head1 FUNCTIONS
lib/Convert/Base64.pm view on Meta::CPAN
C<encode_base64>
my $encoded = encode_base64("foo");
Encode a string of bytes into its Base64 representation.
=item *
C<decode_base64>
my $decoded = encode_base64("Zm9v");
Decode a Base64 string into a string of bytes.
=back
=head1 SEE ALSO
=over 4
=item *
( run in 0.246 second using v1.01-cache-2.11-cpan-26ccb49234f )