bech32

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

commit 94e62d60103129f40e348cef99df6d214b6654d3
parent 499894136d56a9bb81900799e7ecf5cef16b8547
Author: Jared Tobin <jared@jtobin.io>
Date:   Sat, 14 Dec 2024 06:11:43 -0330

lib: haddock stuff

Diffstat:
Mlib/Data/ByteString/Base32.hs | 1+
Mlib/Data/ByteString/Bech32.hs | 5+++--
Mlib/Data/ByteString/Bech32m.hs | 5+++--
3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/lib/Data/ByteString/Base32.hs b/lib/Data/ByteString/Base32.hs @@ -1,3 +1,4 @@ +{-# OPTIONS_HADDOCK hide, prune #-} {-# LANGUAGE BangPatterns #-} {-# LANGUAGE BinaryLiterals #-} {-# LANGUAGE OverloadedStrings #-} diff --git a/lib/Data/ByteString/Bech32.hs b/lib/Data/ByteString/Bech32.hs @@ -1,3 +1,4 @@ +{-# OPTIONS_HADDOCK prune #-} {-# LANGUAGE ViewPatterns #-} -- | @@ -11,10 +12,10 @@ -- bech32 checksummed base32 encoding, with checksum verification. module Data.ByteString.Bech32 ( - -- * encoding + -- * Encoding encode - -- * checksum verification + -- * Checksum , verify ) where diff --git a/lib/Data/ByteString/Bech32m.hs b/lib/Data/ByteString/Bech32m.hs @@ -1,3 +1,4 @@ +{-# OPTIONS_HADDOCK prune #-} {-# LANGUAGE ViewPatterns #-} -- | @@ -11,10 +12,10 @@ -- bech32m checksummed base32 encoding, with checksum verification. module Data.ByteString.Bech32m ( - -- * encoding + -- * Encoding encode - -- * checksum verification + -- * Checksum , verify ) where