Hashing passwords
Gozen comes with a secure hashing and validating passwords.
passwordHash, _ := hash.HashPassword(plaintextPassword)
And to verify
check := hash.CheckPasswordHash(plaintextPassword, hashedPassword)
Please import the following library
"gozen/system/hash"