From 04912a180a9239fe63a03fc2b6cda45c62bcb2bc Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sun, 27 Jul 2014 11:07:59 -0700 Subject: [PATCH] correct a typo in PBKDF2 --- Crypto/KDF/PBKDF2.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto/KDF/PBKDF2.hs b/Crypto/KDF/PBKDF2.hs index d643e99..c2cf6e4 100644 --- a/Crypto/KDF/PBKDF2.hs +++ b/Crypto/KDF/PBKDF2.hs @@ -45,7 +45,7 @@ prfHMAC alg k = hmacIncr alg (HMAC.initialize k) -- | Parameters for PBKDF2 data Parameters = Parameters { password :: ByteString -- ^ Password (bytes encoded) - , salt :: ByteString -- ^ Salut (bytes encoded) + , salt :: ByteString -- ^ Salt (bytes encoded) , iterCounts :: Int -- ^ the number of user-defined iterations for the algorithms. e.g. WPA2 uses 4000. , outputLength :: Int -- ^ the number of bytes to generate out of PBKDF2 }