Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Encode::Base58 - Base58 encodings (for Flickr short URI)

Author

       Tatsuhiko Miyagawa <miyagawa@bulknews.net>

Description

       Encode::Base58 is a base58 encoder/decoder implementation in Perl. Base58 encoding is used in shortening
       ID numbers into a short string for Flickr's short URL ("flic.kr").

License

       This library is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.

Name

       Encode::Base58 - Base58 encodings (for Flickr short URI)

See Also

       <http://www.flickr.com/groups/api/discuss/72157616713786392/>

       <http://gist.github.com/101753> (in Ruby)

       <http://gist.github.com/101674> (in Objective-C and unit tests)

perl v5.36.0                                       2022-11-19                                Encode::Base58(3pm)

Synopsis

         use Encode::Base58;

         my $short  = encode_base58($number);
         my $number = decode_base58($short);

See Also