So, I'm cool with using a per-user salt to hash my users' passwords. However, there's one piece of advice in the accepted answer:
Do not use a separate column for the salt.
This doesn't make sense to me. If I'm just catenating the hash and salt and putting them in the same column, surely that's semantically equivalent to two separ...
I have access to the lesser account. I want the password to the All Privileges account. I've tried a few options but can't seem to get the password to reset.
Suggestions?
I'm also on Twitter asking for help... @BrentDPayne
Thanks,
Brent D. Payne
...
The following Haskell program prompts the user for a password in the terminal and continues if he has entered the correct one:
main = do
putStrLn "Password:"
password <- getLine
case hash password `member` database of
False -> putStrLn "Unauthorized use!"
True -> do
...
Unfortunately, the...