Convert-Z85

 view release on metacpan or  search on metacpan

README.mkdn  view on Meta::CPAN

# NAME

Convert::Z85 - Encode and decode Z85 strings

# SYNOPSIS

    use Convert::Z85;

    my $encoded = encode_z85($binarydata);
    my $decoded = decode_z85($encoded);

# DESCRIPTION

An implementation of the _Z85_ encoding scheme (as described in
[ZeroMQ spec 32](http://rfc.zeromq.org/spec:32)) for encoding binary data as
plain text.

Modelled on the [PyZMQ](http://zeromq.github.io/pyzmq/) implementation.

This module uses [Exporter::Tiny](https://metacpan.org/pod/Exporter::Tiny) to export two functions by default:

lib/Convert/Z85.pm  view on Meta::CPAN


=head1 NAME

Convert::Z85 - Encode and decode Z85 strings

=head1 SYNOPSIS

  use Convert::Z85;

  my $encoded = encode_z85($binarydata);
  my $decoded = decode_z85($encoded);

=head1 DESCRIPTION

An implementation of the I<Z85> encoding scheme (as described in
L<ZeroMQ spec 32|http://rfc.zeromq.org/spec:32>) for encoding binary data as
plain text.

Modelled on the L<PyZMQ|http://zeromq.github.io/pyzmq/> implementation.

This module uses L<Exporter::Tiny> to export two functions by default:



( run in 1.525 second using v1.01-cache-2.11-cpan-26ccb49234f )