ppad-pbkdf 0.1.0 → 0.1.1
raw patch · 3 files changed
+12/−2 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Crypto.KDF.PBKDF: fi :: (Integral a, Num b) => a -> b
- Crypto.KDF.PBKDF: ser32 :: Word32 -> ByteString
- Crypto.KDF.PBKDF: xor :: ByteString -> ByteString -> ByteString
Files
- CHANGELOG +3/−0
- lib/Crypto/KDF/PBKDF.hs +8/−1
- ppad-pbkdf.cabal +1/−1
CHANGELOG view
@@ -1,5 +1,8 @@ # Changelog +- 0.1.1 (2025-02-24)+ * Minor Haddock fixes.+ - 0.1.0 (2025-02-24) * Initial release, supporting a generic RFC2898 PBKDF2 function.
lib/Crypto/KDF/PBKDF.hs view
@@ -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
ppad-pbkdf.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: ppad-pbkdf-version: 0.1.0+version: 0.1.1 synopsis: A password-based key derivation function license: MIT license-file: LICENSE