go语言使用哈希算法对用户输入的密码进行加密用户登录时对用户的密码进行比对

lu569368 · · 1345 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

# 哈希算法 ** 文章转自go语言中文文档 [http://www.topgoer.com](http://www.topgoer.com/?from=studygolang "文章转自go语言中文文档http://www.topgoer.com") ** ### 使用场景 + 对用户输入的密码进行加密 + 用户登录时对用户的密码进行比对 ### 例子 ```go package main import ( "errors" "fmt" "golang.org/x/crypto/bcrypt" ) func main() { userPassword := "123456" passwordbyte, err := GeneratePassword(userPassword) if err != nil { fmt.Println("加密出错了") } fmt.Println(passwordbyte) // passwordstring := string(passwordbyte) // fmt.Println(passwordstring) //模拟这个字符串是从数据库读取出来的 值是12345678 mysql_password := "$2a$10$I8WaWXgiBw8j/IBejb3t/.s5NoOYLvoQzL6mIM2g3TEu4z0HenzqK" isOk, _ := ValidatePassword(userPassword, mysql_password) if !isOk { fmt.Println("密码错误") return } fmt.Println(isOk) } //GeneratePassword 给密码就行加密操作 func GeneratePassword(userPassword string) ([]byte, error) { return bcrypt.GenerateFromPassword([]byte(userPassword), bcrypt.DefaultCost) } //ValidatePassword 密码比对 func ValidatePassword(userPassword string, hashed string) (isOK bool, err error) { if err = bcrypt.CompareHashAndPassword([]byte(hashed), []byte(userPassword)); err != nil { return false, errors.New("密码比对错误!") } return true, nil } ``` **注意** `golang.org/x/crypto/bcrypt`这个包下载有些难度,需要的小伙伴可以自行百度 官网地址:http://golang.org/x/crypto/bcrypt

有疑问加站长微信联系(非本文作者))

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1345 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传