All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pippsford.encoding.Ascii85 Maven / Gradle / Ivy

The newest version!
package com.pippsford.encoding;

import javax.annotation.concurrent.ThreadSafe;

/**
 * Convert data into a Ascii85 encoded form where every four bytes of data is encoded as five characters.
 *
 * 

See Wikipedia description of Ascii85 encoding * *

Note Ascii85 uses many characters which are considered special in some systems. For maximum portability, use Base64 instead. * * @author Simon Greatrix */ @ThreadSafe public class Ascii85 extends GenericAscii85 { public Ascii85() { super(true, false, true); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy