c# Programming Glossary: logrounds
Why does BCrypt.net GenerateSalt(31) return straight away? http://stackoverflow.com/questions/2222383/why-does-bcrypt-net-generatesalt31-return-straight-away case for years. EDIT I should have read the code a bit logRounds doesn't have anything to do with the salt length. Thanks Aaronaught... the fix private byte CryptRaw byte password byte salt int logRounds ... snip ... uint rounds 1U logRounds ... snip c# salt bcrypt.. byte salt int logRounds ... snip ... uint rounds 1U logRounds ... snip c# salt bcrypt bcrypt.net share improve this question..
|