Hashing
Last updated
Last updated
If you need to hash passwords see the the page.
Do not use vulnerable hashing algorithms from the list below. You can find examples of collision attacks at .
Use the implementation of hash algorithms from the package, such as or . You can find the whole list at https://pkg.go.dev/crypto#Hash
Use the class for hashing implementation. MessageDigest is not thread-safe. Use a new instance for every thread.
Use the package for hashing implementation. The list of supported algorithms is dependent on the available algorithms supported by the version of OpenSSL on the platform. Use openssl list -digest-algorithms
to display the available digest algorithms.
Use the package for hashing implementation. You can find the list of available algorithms .