Cryptographic vs Non-Cryptographic Hash
Cryptographic hashes prioritize security properties.
Non-cryptographic hashes prioritize speed and distribution.
SHA-256 is an example of a cryptographic hash function.
A Hash Table hash should not be assumed to be secure for password storage or digital signatures.
Password storage requires a password-specific password hashing/KDF scheme such as Argon2, scrypt, or bcrypt rather than a fast general-purpose hash.
Cryptographic hashes are generally more computationally expensive than ordinary Hash Table hashes.