Go-Util 是一个golang工具包,包含了一些常用的工具类,方便开发者使用。
go get github.com/dora-exku/go-util
package main
import (
"fmt"
"github.com/chenyingdi/go-util/password"
)
func main() {
// 生成密码
password1 := "secret"
hashedPassword := password.MakePassword(password1)
fmt.Println(hashedPassword)
// 验证密码
fmt.Println(password.CheckPassword(hashedPassword, password1))
}