NAME Data::UUID::Concise - Encode UUIDs to be more concise or communicable VERSION version 0.121082 SYNOPSIS use Data::UUID::Concise; my $duc = Data::UUID::Concise->new(); my $encoded_uuid = $duc->encode((Data::UUID->new)->create); my $decoded_uuid = $duc->decode('M55djt9tt4WoFaL68da9Ef'); ATTRIBUTES alphabet This is the collection of symbols that are used for the encoding scheme. By default, a reasonably unambiguous set of characters is used that is reminiscent of the base 58 scheme used by a rather prominent photo site's URL shortener. METHODS encode Encode a Data::UUID instance as a string with the appropriate set of symbols. decode Decode a string with the appropriate set of symbols and return a Data::UUID instance representing the decoded UUID. SUPPORT Perldoc You can find documentation for this module with the perldoc command. perldoc Data::UUID::Concise Websites The following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources. * Search CPAN The default CPAN search engine, useful to view POD in HTML format. * CPAN Ratings The CPAN Ratings is a website that allows community ratings and reviews of Perl modules. * CPAN Testers The CPAN Testers is a network of smokers who run automated tests on uploaded CPAN distributions. * CPAN Testers Matrix The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms. * CPAN Testers Dependencies The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution. Bugs / Feature Requests Please report any bugs or feature requests by email to "nrr+bug-DATA-UUID-CONCISE@corvidae.org", or through the web interface at . You will be automatically notified of any progress on the request by the system. Source Code git clone https://github.com/nrr/Data-UUID-Concise.git AUTHOR Nathaniel Reindl COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Nathaniel Reindl. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.