1MIME::Decoder::Gzip64(3U)ser Contributed Perl DocumentatiMoInME::Decoder::Gzip64(3)
2
3
4
6 MIME::Decoder::Gzip64 - decode a "base64" gzip stream
7
9 A generic decoder object; see MIME::Decoder for usage.
10
12 A MIME::Decoder::Base64 subclass for a nonstandard encoding whereby
13 data are gzipped, then the gzipped file is base64-encoded. Common non-
14 standard MIME encodings for this:
15
16 x-gzip64
17
18 Since this class relies on external programs which may not exist on
19 your machine, MIME-tools does not "install" it by default. To use it,
20 you need to say in your main program:
21
22 install MIME::Decoder::Gzip64 'x-gzip64';
23
24 Note: if this class isn't working for you, you may need to change the
25 commands it runs. In your main program, you can do so by setting up
26 the two commands which handle the compression/decompression.
27
28 use MIME::Decoder::Gzip64;
29
30 $MIME::Decoder::Gzip64::GZIP = 'gzip -c';
31 $MIME::Decoder::Gzip64::GUNZIP = 'gzip -d -c';
32
34 MIME::Decoder
35
37 Eryq (eryq@zeegee.com), ZeeGee Software Inc (http://www.zeegee.com).
38
39 All rights reserved. This program is free software; you can
40 redistribute it and/or modify it under the same terms as Perl itself.
41
42
43
44perl v5.28.0 2017-04-05 MIME::Decoder::Gzip64(3)