Bump version and update Changes
[convert-base91.git] / README
1 Convert-Base91 version 0.001002
2 ===============================
3
4 Base91 is a method for encoding binary data as printable ASCII
5 characters. Every two base91 characters (16 bits) encode 13 or 14 bits
6 of actual data, thus the overhead is between 14% and 23%, an
7 improvement over base64's overhead of 33%.
8
9 This module provides a procedural interface for encoding/decoding
10 whole strings and an OO interface for encoding/decoding in chunks.
11
12 INSTALLATION
13
14 To install this module type the following:
15
16 perl Makefile.PL
17 make
18 make test
19 make install
20
21 DEPENDENCIES
22
23 This module requires no non-core modules and libraries.
24 A C compiler is needed.
25
26 COPYRIGHT AND LICENCE
27
28 Copyright (C) 2017 by Marius Gavrilescu
29
30 This library is free software; you can redistribute it and/or modify
31 it under the same terms as Perl itself, either Perl version 5.26.1 or,
32 at your option, any later version of Perl 5 you may have available.
33
34
This page took 0.019436 seconds and 4 git commands to generate.