bech32

Pure Haskell bech32 and bech32m encodings.
git clone git://git.ppad.tech/bech32.git
Log | Files | Refs | README | LICENSE

commit c0c5233bd3233fe5e52bb43eea0405299095d04c
parent 52a11137e17d1ca94239d815abc5eac36b3aef00
Author: Jared Tobin <jared@jtobin.io>
Date:   Sat, 14 Dec 2024 04:11:54 -0330

lib: comments

Diffstat:
Mlib/Data/ByteString/Bech32.hs | 2+-
Mlib/Data/ByteString/Bech32m.hs | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/Data/ByteString/Bech32.hs b/lib/Data/ByteString/Bech32.hs @@ -31,7 +31,7 @@ verify -> Bool verify = B32.verify Bech32 --- | Encode a base255 human-readable part and input as Bech32. +-- | Encode a base255 human-readable part and input as bech32. -- -- >>> let Just bech32 = encode "bc" "my string" -- >>> bech32 diff --git a/lib/Data/ByteString/Bech32m.hs b/lib/Data/ByteString/Bech32m.hs @@ -31,7 +31,7 @@ verify -> Bool verify = B32.verify Bech32m --- | Encode a base255 human-readable part and input as Bech32m. +-- | Encode a base255 human-readable part and input as bech32m. -- -- >>> let Just bech32m = encode "bc" "my string" -- >>> bech32m