mirror of
https://github.com/thomiceli/opengist.git
synced 2025-05-14 16:12:10 +02:00
12 lines
267 B
Go
12 lines
267 B
Go
package password
|
|
|
|
import "github.com/thomiceli/opengist/internal/auth"
|
|
|
|
func HashPassword(code string) (string, error) {
|
|
return auth.Argon2id.Hash(code)
|
|
}
|
|
|
|
func VerifyPassword(code, hashedCode string) (bool, error) {
|
|
return auth.Argon2id.Verify(code, hashedCode)
|
|
}
|