go-password
hash a password and verify password against hash
used packages
getting started
go get github.com/Lukas-Nielsen/go-password
import "github.com/Lukas-Nielsen/go-password"
usage
hash a password
// returns the password hash and error
hash, err := password.Hash(<password>)
verify a password
// returns true or false
isValid := password.Verify(<password>, <hash>)