如何在 Golang 中计算嵌套/迭代 MD5 哈希?

我正在构建一个使用 golang 来暴力破解密码的程序。密码哈希的格式是将 1000 倍应用于初始密码然后使用的 md5 哈希。(我展示的代码只应用了这个 5x)


md5(md5(md5(md5(....(md5(密码))))))


func hash(pw string) string {

    hasher := md5.New()


    data := []byte(pw)

    fmt.Printf("Initial data: %s\n", pw)


    for i := 0; i < 5; i++ {

        hasher.Reset()

        hasher.Write(data)

        sum := hasher.Sum(nil)

        data = sum[:]

        fmt.Printf("Iteration %x has the hash: %x\n", i+1, data)

    }

    return hex.EncodeToString(data)

}

结果不同于使用命令行实用程序 md5sum 给出的结果。我的另一个尝试是使用,因为这是无状态的,但我仍然开始偏离第二轮哈希


sum := md5.Sum([]byte(data))

实现计算此迭代哈希的好/成功方法是什么?


繁星淼淼
浏览 104回答 1
1回答

三国纷争

也许我误解了你的问题,但这是你要找的吗?package mainimport (&nbsp; &nbsp; "crypto/md5"&nbsp; &nbsp; "fmt"&nbsp; &nbsp; "io")func main() {&nbsp; &nbsp; fmt.Printf("\nresult: %s", md5plus("123", 2))}func md5plus(text string, cost int) string {&nbsp; &nbsp; for i := 0; i < cost; i++ {&nbsp; &nbsp; &nbsp; &nbsp; fmt.Printf("Loop %d: %s", i+1, text)&nbsp; &nbsp; &nbsp; &nbsp; hash := md5.New()&nbsp; &nbsp; &nbsp; &nbsp; io.WriteString(hash, text)&nbsp; &nbsp; &nbsp; &nbsp; text = fmt.Sprintf("%x", hash.Sum(nil))&nbsp; &nbsp; &nbsp; &nbsp; fmt.Printf(" => %s\n", text)&nbsp; &nbsp; }&nbsp; &nbsp; return text}https://play.golang.org/p/ri-5m3RZ_8v我知道您正试图在您的版本中重用散列器,但据我了解,这不是该库的用途。您写入它来计算单个哈希值,而不是轮数。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go