commit d0631cd5ce3c2ab60ef2f5ff850b6d644892f02a
parent 7861ae1261eceb03e766fc2f9d5839c2afc5a6bf
Author: Jared Tobin <jared@jtobin.io>
Date: Mon, 24 Feb 2025 12:26:18 +0400
lib: haddock fixes
Diffstat:
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/lib/Crypto/KDF/PBKDF.hs b/lib/Crypto/KDF/PBKDF.hs
@@ -1,3 +1,4 @@
+{-# OPTIONS_HADDOCK prune #-}
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE BinaryLiterals #-}
{-# LANGUAGE NumericUnderscores #-}
@@ -12,7 +13,13 @@
-- function) implementation, as specified by
-- [RFC2898](https://datatracker.ietf.org/doc/html/rfc2898).
-module Crypto.KDF.PBKDF where
+module Crypto.KDF.PBKDF (
+ -- * HMAC synonym
+ HMAC
+
+ -- * PBKDF2
+ , derive
+ )where
import Data.Bits ((.>>.), (.&.))
import qualified Data.Bits as B