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条)

报告相同问题?

悬赏问题

  • ¥15 用hfss做微带贴片阵列天线的时候分析设置有问题
  • ¥50 我撰写的python爬虫爬不了 要爬的网址有反爬机制
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥120 计算机网络的新校区组网设计
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等