SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

perl-MIME-Base64 rpm build for : OpenSuSE. For other distributions click perl-MIME-Base64.

Name : perl-MIME-Base64
Version : 3.16 Vendor : obs://build_opensuse_org/home:illuusio
Release : ill.3.2 Date : 2020-09-27 05:11:49
Group : Unspecified Source RPM : perl-MIME-Base64-3.16-ill.3.2.src.rpm
Size : 0.06 MB
Packager : (none)
Summary : Encoding and decoding of base64 strings
Description :
This module provides functions to encode and decode strings into and from
the base64 encoding specified in RFC 2045 - _MIME (Multipurpose Internet
Mail Extensions)_. The base64 encoding is designed to represent arbitrary
sequences of octets in a form that need not be humanly readable. A
65-character subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6 bits
to be represented per printable character.

The following primary functions are provided:

* encode_base64( $bytes )

* encode_base64( $bytes, $eol );

Encode data by calling the encode_base64() function. The first argument is
the byte string to encode. The second argument is the line-ending sequence
to use. It is optional and defaults to \"\
\". The returned encoded string is
broken into lines of no more than 76 characters each and it will end with
$eol unless it is empty. Pass an empty string as second argument if you do
not want the encoded string to be broken into lines.

The function will croak with \"Wide character in subroutine entry\" if $bytes
contains characters with code above 255. The base64 encoding is only
defined for single-byte characters. Use the Encode module to select the
byte encoding you want.

* decode_base64( $str )

Decode a base64 string by calling the decode_base64() function. This
function takes a single argument which is the string to decode and returns
the decoded data.

Any character not part of the 65-character base64 subset is silently
ignored. Characters occurring after a \'=\' padding character are never
decoded.

If you prefer not to import these routines into your namespace, you can
call them as:

use MIME::Base64 ();
$encoded = MIME::Base64::encode($decoded);
$decoded = MIME::Base64::decode($encoded);

Additional functions not exported by default:

* encode_base64url( $bytes )

* decode_base64url( $str )

Encode and decode according to the base64 scheme for \"URL applications\"
[1]. This is a variant of the base64 encoding which does not use padding,
does not break the string into multiple lines and use the characters \"-\"
and \"_\" instead of \"+\" and \"/\" to avoid using reserved URL characters.

* encoded_base64_length( $bytes )

* encoded_base64_length( $bytes, $eol )

Returns the length that the encoded string would have without actually
encoding it. This will return the same value as
\'length(encode_base64($bytes))\', but should be more efficient.

* decoded_base64_length( $str )

Returns the length that the decoded string would have without actually
decoding it. This will return the same value as
\'length(decode_base64($str))\', but should be more efficient.

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/home:/illuusio:/perl/openSUSE_Slowroll/x86_64

Content of RPM  Changelog  Provides Requires

Download
ftp.icm.edu.pl  perl-MIME-Base64-3.16-ill.3.2.x86_64.rpm
     

Provides :
perl(MIME::Base64)
perl(MIME::QuotedPrint)
perl-MIME-Base64
perl-MIME-Base64(x86-64)

Requires :
libc.so.6()(64bit)
libc.so.6(GLIBC_2.2.5)(64bit)
libc.so.6(GLIBC_2.38)(64bit)
libc.so.6(GLIBC_2.4)(64bit)
perl(:MODULE_COMPAT_5.40.0)
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(PayloadIsZstd) <= 5.4.18-1


Content of RPM :
/usr/lib/perl5/vendor_perl/5.40.0/x86_64-linux-thread-multi/MIME
/usr/lib/perl5/vendor_perl/5.40.0/x86_64-linux-thread-multi/MIME/Base64.pm
/usr/lib/perl5/vendor_perl/5.40.0/x86_64-linux-thread-multi/MIME/QuotedPrint.pm
/usr/lib/perl5/vendor_perl/5.40.0/x86_64-linux-thread-multi/auto/MIME
/usr/lib/perl5/vendor_perl/5.40.0/x86_64-linux-thread-multi/auto/MIME/Base64
/usr/lib/perl5/vendor_perl/5.40.0/x86_64-linux-thread-multi/auto/MIME/Base64/Base64.so
/usr/share/doc/packages/perl-MIME-Base64
/usr/share/doc/packages/perl-MIME-Base64/Changes
/usr/share/doc/packages/perl-MIME-Base64/README
/usr/share/doc/packages/perl-MIME-Base64/benchmark
/usr/share/doc/packages/perl-MIME-Base64/benchmark-qp
/usr/share/licenses/perl-MIME-Base64
/usr/share/licenses/perl-MIME-Base64/LICENSE
/usr/share/man/man3/MIME::Base64.3pmc.gz
/usr/share/man/man3/MIME::QuotedPrint.3pmc.gz

 
ICM