Bgrypt密码哈希在Golang(兼容Node.js)?

前端之家收集整理的这篇文章主要介绍了Bgrypt密码哈希在Golang(兼容Node.js)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用Node.js护照设置了一个用于用户身份验证的网站。

现在我需要迁移到Golang,并需要使用保存在db中的用户密码进行身份验证。

Node.js加密代码是:

var bcrypt = require('bcrypt');

    bcrypt.genSalt(10,function(err,salt) {
        if(err) return next(err);

        bcrypt.hash(user.password,salt,hash) {
            if(err) return next(err);
            user.password = hash;
            next();
        });
    });

如何使同一个散列的字符串作为Node.js bcrypt与Golang?

使用 golang.org/x/crypto/bcrypt软件包,我相信相当于:
hashedPassword,err := bcrypt.GenerateFromPassword(password,bcrypt.DefaultCost)

工作示例:

package main

import (
    "golang.org/x/crypto/bcrypt"
    "fmt"
)

func main() {
    password := []byte("MyDarkSecret")

    // Hashing the password with the default cost of 10
    hashedPassword,bcrypt.DefaultCost)
    if err != nil {
        panic(err)
    }
    fmt.Println(string(hashedPassword))

    // Comparing the password with the hash
    err = bcrypt.CompareHashAndPassword(hashedPassword,password)
    fmt.Println(err) // nil means it is a match
}

猜你在找的Go相关文章