1 Star 0 Fork 1

常清静矣/golang-100

forked from 蓝桥云课/golang-100 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
044-sha1.go 464 Bytes
一键复制 编辑 原始数据 按行查看 历史
konroyliu 提交于 2021-01-11 10:51 . golang-100 answer
package main
import (
"crypto/sha1"
"fmt"
)
func Sha1Checksum(s string) string {
return fmt.Sprintf("%x", sha1.Sum([]byte(s)))
}
func main() {
tests := []struct {
name string
s string
want string
}{
{
name: "empty string",
s: "",
},
{
name: "hello world",
s: "hello world",
},
}
for _, tt := range tests {
got := Sha1Checksum(tt.s)
fmt.Printf("sha1Checksum(%q) = %v\n", tt.s, got)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/syongaaa/golang-100.git
git@gitee.com:syongaaa/golang-100.git
syongaaa
golang-100
golang-100
master

搜索帮助