Expand description
Utility functions shared across primitive modules.
Includes hex encoding/decoding, Base58 encoding/decoding, and Base58Check encoding/decoding with checksum verification.
Functionsยง
- base58_
check_ decode - Decode a Base58Check string, verifying the checksum.
- base58_
check_ encode - Encode data with a prefix using Base58Check (includes 4-byte checksum).
- base58_
decode - Decode a Base58 string to bytes.
- base58_
encode - Encode bytes to a Base58 string.
- from_
hex - Decode a hexadecimal string into bytes.
- to_hex
- Encode bytes as a hexadecimal string.