Skip to content

std::encoding::ascii85

Status: experimental

ASCII85 / base85 encode / decode.

API details and source

The implementation source contains the complete declarations and implementation notes. The table below lists canonical Gossamer call signatures; every item name links directly to its implementation file.

Item Canonical signature or declaration Description
decode fn decode(text: String) -> Result<Vec<u8>, errors::Error> ASCII85 string -> bytes.
encode fn encode(data: Vec<u8>) -> String Bytes -> ASCII85 string.