changed PWSalt default size to 32 bytes (256 bits)

This commit is contained in:
Jonathan Lamothe
2018-12-21 16:49:32 -05:00
parent 570cfe4af2
commit 2cb10b263e
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ tests = TestLabel "newPWSalt" $ TestList
(salt', _) = newPWSalt g'
g = mkStdGen 1
testLength x = TestLabel "salt length" $ B.length x ~?= 256
testLength x = TestLabel "salt length" $ B.length x ~?= 32
testDiff x y = TestLabel "different generators" $ TestCase $
assertBool "salts match" $ x /= y