Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 477 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 477 Bytes

python-fd58 bundles the fast Base58 from Firedancer as a Python package.

Source: https://github.com/firedancer-io/firedancer/tree/main/src/ballet/base58

Supports 32 and 64 byte data only.

Usage:

>>> import fd58
>>> fd58.enc32(b'\x00' * 32)
b'11111111111111111111111111111111
>>> fd58.dec32(b'11111111111111111111111111111111')
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'