Skip to content
Advertisement

Tag: crypt

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 things. Who can help us

crypt password storage and retrival php

I am trying to set up a secure login & register system using crypt() as I have read that that is php’s stored function for bcrypt I am registering a user but taking their password and and then crypting it. I then store $hashed_password in the db then when the user logs in I am trying to match the password

Advertisement