Skip to content

Tag: sha512

Generating crypt() sha512 hashes in Go

I am working on my authorization module in GoLang. Before we used PHP5 with the crypt function. The hash was generated like SHA-512: And stored like that in the database. But now I need make it work also in GoLang. I have searched on Google and tried different things, such as: But all generate different thing…