1 unstable release
0.1.0 | Nov 14, 2023 |
---|
#1612 in Encoding
76 downloads per month
Used in 3 crates
47KB
1K
SLoC
An optimized implementation of Base58 encoding/decoding for 32 and 64 byte numbers.
This library is based off of the original C implementation from Jump Crypto's Firedancer
repo which can be found here. These algorithms are significantly faster than the commonly used
bs58
library for 32 and 64 bytes.
Development
To run the fuzzer: cargo-fuzz run decode_32
To run a benchmark: cargo bench encode_32
lib.rs
:
An optimized implementation of Base58 encoding/decoding for 32 and 64 byte numbers.
This library is based off of the original C implementation from Jump Crypto's Firedancer
repo which can be found here. These algorithms are significantly faster than the commonly used
bs58
library for 32 and 64 bytes.
Performance vs. bs58
Algorithm | Speedup |
---|---|
encode_32 |
~9x |
encode_64 |
~13x |
decode_32 |
~3x |
decode_64 |
~5x |