Hashing

Overview

This page contains recommendations for choosing a hashing algorithm.

General

chevron-rightVulnerable hash algorithmshashtag
  • MD4

  • MD5

  • SHA-0

  • SHA-1

  • HAVAL-128

  • PANAMA

  • RIPEMD

Hashing implementation

Use the implementation of hash algorithms from the cryptoarrow-up-right package, such as crypto/sha256arrow-up-right or crypto/sha512arrow-up-right. You can find the whole list at https://pkg.go.dev/crypto#Hash

Last updated