
com.pippsford.encoding.Ascii85 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-utils Show documentation
Show all versions of common-utils Show documentation
Code that seems to me to have utility across multiple projects
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