base58

Pure Haskell base58, base58check encoding/decoding (docs.ppad.tech/base58).
git clone git://git.ppad.tech/base58.git
Log | Files | Refs | README | LICENSE

commit b958a7953ab4ffbda794d4dfa04379336eca5713
parent f0e9ce62fbfd9d0736c9d6535de5597c2160e39a
Author: Jared Tobin <jared@jtobin.io>
Date:   Tue, 18 Feb 2025 23:09:18 +0400

release: v0.2.0

Diffstat:
MCHANGELOG | 6++++++
Mppad-base58.cabal | 2+-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,5 +1,11 @@ # Changelog +- 0.2.0 (2025-02-18) + * The base58check encode and decode functions no longer treat version + bytes (of which there may now be several) in any special fashion. + Version bytes should be prepended to the target string before + encoding, and removed manually from any decoded strings. + - 0.1.1 (2025-01-06) * Includes a minor encoding-related performance optimisation. diff --git a/ppad-base58.cabal b/ppad-base58.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ppad-base58 -version: 0.1.1 +version: 0.2.0 synopsis: base58 and base58check encoding/decoding. license: MIT license-file: LICENSE