Module ascii85

Module ascii85 

Source
Expand description

Encoding and decoding of ASCII85-encoded data.

§Examples

use vintage_schematics::ascii85::decode;

let decoded = decode("87cURD_*#TDfTZ)+T").unwrap();
assert_eq!(decoded, b"Hello, world!");

Structs§

DecodeError
Error type returned by decode.

Enums§

ErrorKind
The kind of error that occurred during decoding ASCII85 input.

Functions§

decode
Decodes an ASCII85-encoded string into a byte vector.
encode
Encodes a set of bytes into an ASCII85-encoded string.