Expand description
Base58 encoder and decoder.
This module provides functions for encoding and decoding base58 slices and strings respectively.
Enums§
- An error that might occur during base58 decoding.
Functions§
- Decodes a base58-encoded string into a byte vector.
- Decodes a base58check-encoded string into a byte vector verifying the checksum.
- Encodes
data
as a base58 string (see alsobase58::encode_check()
). - Encodes
data
as a base58 string including the checksum. - Encodes a slice as base58, including the checksum, into a formatter.