|
|
|
|
|
by Pesthuf
751 days ago
|
|
Not quite as unrealistic as it seems - I have colleagues I can’t convince that SHA-256 is NOT good for passwords. They just don’t understand that it’s safe for larger binaries, but absolutely not for short ASCII strings like passwords.
Also they find it convenient since most modern programming languages and databases directly support those hash functions, but not something like bcrypt or Argon2. So I do think there are many passwords out there you can crack easily and quickly nowadays. I’ll try convincing them again… |
|
Can you define SHA-256? And not good? Using it with PBKDF2/bcrypt/etc. seems to be widely accepted, but we don't know if you were referring to a single unsalted round of SHA-256 or what. Also by "not good" do you mean "easy to reverse the hash itself" or "easy to bruteforce the resulting password"? I think these questions make a big difference, e.g. you could have the most complex hashing algorithm on Earth, but if they're bruteforcing a three digit password, it doesn't matter.
(something something bitcoin uses sha2)