Encode-Base32-Crockford
view release on metacpan or search on metacpan
lib/Encode/Base32/Crockford.pm view on Meta::CPAN
This module provides methods to convert numbers to and from that notation.
=head1 SYNOPSIS
use Encode::Base32::Crockford qw(:all); # import all methods
or
use Encode::Base32::Crockford qw(base32_decode); # your choice of methods
my $decoded = base32_decode_with_checksum("16JD");
my $encoded = base32_encode_with_checksum(1234);
=head1 METHODS
=head2 base32_encode
print base32_encode(1234); # prints "16J"
Encode a base 10 number. Will die on inappropriate input.
( run in 0.235 second using v1.01-cache-2.11-cpan-0d8aa00de5b )