dongliang2058 2014-04-13 05:27
浏览 166
已采纳

相当于golang中的盐和哈希

Here's an example of salting and hashing a given password in python.

import scrypt
import os

# Length of salt
PW_SALT_BYTES = 32
# Length of scrypt hash of passwords
PW_HASH_BYTES = 64
# test password
password = "hello"

salt = os.urandom(PW_SALT_BYTES).encode('hex')
# hash(password, salt, N=1 << 14, r=8, p=1, buflen=64)
hashed_password = scrypt.hash(str(password), salt.decode('hex'), buflen=PW_HASH_BYTES).encode('hex')
print(hashed_password)

Which would give us a hashed and salted string in return:-

4d1da45b401961fccb10e094ecd70ec79510f05483ca293d300bbd0024e35866ca39fe09fbc15f83a359431021a1ed9644f7d2b871b357e37a186300877edb18

How would I implement this in golang?

  • 写回答

3条回答 默认 最新

  • dongzhi4498 2014-04-13 06:12
    关注

    Go doesn't have scrypt in the standard library but there is an "official" implementation in the go.crypto repo.

    import (
        "crypto/rand"
        "fmt"
        "io"
        "log"
    
        "code.google.com/p/go.crypto/scrypt"
    )
    
    const (
        PW_SALT_BYTES = 32
        PW_HASH_BYTES = 64
    
        password = "hello"
    )
    
    func main() {
        salt := make([]byte, PW_SALT_BYTES)
        _, err := io.ReadFull(rand.Reader, salt)
        if err != nil {
            log.Fatal(err)
        }
    
        hash, err := scrypt.Key([]byte(password), salt, 1<<14, 8, 1, PW_HASH_BYTES)
        if err != nil {
            log.Fatal(err)
        }
    
        fmt.Printf("%x
    ", hash)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥15 QT6颜色选择对话框显示不完整
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥15 DS18B20内部ADC模数转换器