Jarmor 1.0 review

Download
by rbytes.net on

Jarmor is a tiny collection of java filters implementing ASCII armors. ASCII armors are data converters between binary format and

License: BSD License
File size: 16K
Developer: Luc Maisonobe
0 stars award from rbytes.net

Jarmor is a tiny collection of java filters implementing ASCII armors.

ASCII armors are data converters between binary format and textual format. They are used for example by mailers to handle mail attachements. They can also be used for example to store binary data in an otherwise textual format, for example XML.

Several popular encoding algorithms exists. They all rely on a small subset of ASCII for the textual format and they all increase the size of the encoded data with respect to the raw binary data. Jarmor supports encoding and decoding using the Base64, Base32, Base16, UUCP and ASCII85 encodings.

These classes extends java.io.FilterInputStream for the decoders and java.io.FilterOutputStream for the encoders. This allows to put them simply in data streams and encode/decode binary streams on the fly.

What's New in This Release:
An error in ASCII85Decoder was fixed.
This error occurred for specific rare byte combinations in the last data chunk when it was not complete (i.e. less than four bytes).
The encoding class was not affected by the error.
Jarmor is now considered stable and known to be used in critical production environments.

Jarmor 1.0 keywords