1Base32(3) User Contributed Perl Documentation Base32(3)
2
3
4
6 MIME::Base32 - Base32 encoder / decoder
7
9 # RFC forces the [A-Z2-7] RFC-3548 compliant encoding
10 # default encoding [0-9A-V] is for backward compatibility with pre v1.0
11 use MIME::Base32 qw( RFC );
12
13 $encoded = MIME::Base32::encode($text_or_binary_data);
14 $decoded = MIME::Base32::decode($encoded);
15
17 Encode data similar way like MIME::Base64 does.
18
19 Main purpose is to create encrypted text used as id or key entry typed-
20 or-submitted by user. It is upper/lowercase safe (not sensitive).
21
23 ALLWAYS NOTHING
24
26 Daniel Peder, sponsored by Infoset s.r.o., Czech Republic
27 <Daniel.Peder@InfoSet.COM> http://www.infoset.com
28
30 Copyright (c) 2003-2010 Daniel Peder. All rights reserved.
31
32 This library is free software; you can redistribute it and/or modify it
33 under the same terms as Perl itself.
34
36 Version 1.02 provides minor changes only: - added COPYRIGHT according
37 to FEDORA & DEBIAN community requests - test.pl - extended test string
38 (just for sure ;)
39
41 perl(1), MIME::Base64(3pm).
42
43
44
45perl v5.12.1 2010-08-25 Base32(3)