Bump password strength to compensate 2 years

Computers are now faster than in 2013.
This commit is contained in:
mrkkrp 2015-12-03 00:08:51 +06:00
parent 2431100c8b
commit 1976e90be9

View File

@ -549,7 +549,7 @@ saltLength = 5
-- | Salt a password with a randomly generated salt.
saltPass :: Text -> IO Text
saltPass = fmap (decodeUtf8With lenientDecode)
. flip PS.makePassword 14
. flip PS.makePassword 16
. encodeUtf8
saltPass' :: String -> String -> String