phkdf-0.0.0.0: Toolkit for self-documenting password hash and key derivation functions.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Crypto.Encoding.PHKDF

Synopsis

Documentation

add64WhileLt :: (Ord a, Num a, Bits a) => a -> a -> a Source #

add64WhileLt b c is equivalent to while (b < c) { b += 64 }; return b

add64WhileLt' :: (Ord a, Num a, Bits a, Show a) => a -> a -> a Source #