The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

OnSearch::Base64 - Base64 encoding and decoding library.

SYNOPSIS

  use OnSearch::Base64;
  my $base64_str = encode_base64 ($str);
  my $str = decode_base64 ($str);

DESCRIPTION

OnSearch::Base64 provides Base64 encoding and decoding functions.

EXPORT

encode_base64 (str)

Encode a string using Base 64 encoding. ======= OnSearch::Base64 provides Base64 encoding and decoding functions.

EXPORT

encode_base64 (str)

Encode a string using Base 64 encoding.

decode_base64 (base64_str)

Decode a Base 64 string.

VERSION AND COPYRIGHT

VERSION AND COPYRIGHT

$Id: Base64.pm,v 1.5 2005/07/24 08:04:24 kiesling Exp $

Written by Robert Kiesling <rkies@cpan.org> and licensed under the same terms as Perl. Refer to the file, "Artistic," for information.

The encoding and decoding algorithms are derived from, encdec.c, which was posted to the comp.mail.mime news group.

SEE ALSO

OnSearch(3)