Expand description
Encoder/decoder for base45 that is fully compatible with
draft-faltstrom-base45-07.txt
let encoded = base45::encode("Hello!!");
Features:
array_chunks
, which is using experimental array and const-generic features. For information & tracking, see rust/rust#74985. If not enabled, this usescore::slice::ChunksExact
. Ideally, there is no performance penalty using this means.
Modules
Structs
- The error type returned when the input is not a valid base45 string
Functions
- Decode a string from base45
- Encode a string to base45
- encode_from_bufferDeprecatedEncode a buffer to base45