Go网络编程-密码哈希(bcrypt):修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年2月7日 (星期三)

  • 当前之前 09:372024年2月7日 (三) 09:37BrainBs 讨论 贡献 1,185字节 +1,185 创建页面,内容为“ 这个例子将展示如何使用bcrypt哈希密码。为此,我们必须像这样获取golang bcrypt库: <syntaxhighlight lang="shell">$ go get golang.org/x/crypto/bcrypt</syntaxhighlight> 从现在开始,我们编写的每个应用程序都将能够使用这个库。 <br> <syntaxhighlight lang="go">// passwords.go package main import ( "fmt" "golang.org/x/crypto/bcrypt" ) func HashPassword(password string) (string, error) { bytes, err…”