A library crate providing a dependency-free, pure rust implementation of the cashaddr codec.
Cashaddr is a base32-based encoding scheme designed to encode a hash digest and hash type which describes the use case for the hash. The hash is an arbitrary sequence of either 20, 24, 28, 32, 40, 48, 56, or 64 bytes. The cashaddr format represents this information as a string which consists of 2 parts: an arbitrary user-defined prefix, and a base32-encoded representation of the hash, hash type, and a checksum which checks both the hash payload and the user prefix. For details, see the cashaddr spec
Most of the codec algorithm logic was copied from
bitcoincash-addr
.
This crate seeks to improve on bitcoincash-addr
by providing a more
generalized and ergonomic user interface, adding support for arbitrary
prefixes, and reducing scope to only matters directly related the cashaddr
codec itself (base58check codec removed from scope).