Files
gf/g/crypto/gsha1/gsha1.go

43 lines
1.1 KiB
Go
Raw Normal View History

2017-12-29 16:03:30 +08:00
// Copyright 2017 gf Author(https://gitee.com/johng/gf). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
2018-01-03 10:38:53 +08:00
// SHA1
2017-11-23 10:21:28 +08:00
package gsha1
import (
"crypto/sha1"
"encoding/hex"
"os"
"io"
"gitee.com/johng/gf/g/util/gconv"
2017-11-23 10:21:28 +08:00
)
// 将任意类型的变量进行SHA摘要(注意map等非排序变量造成的不同结果)
// 内部使用了md5计算因此效率会稍微差一些更多情况请使用 EncodeString
func Encrypt(v interface{}) string {
r := sha1.Sum(gconv.Bytes(v))
return hex.EncodeToString(r[:])
2017-11-23 10:21:28 +08:00
}
// 对字符串行SHA1摘要计算
func EncryptString(s string) string {
2017-11-23 10:21:28 +08:00
r := sha1.Sum([]byte(s))
return hex.EncodeToString(r[:])
}
// 对文件内容进行SHA1摘要计算
func EncryptFile(path string) string {
2017-11-23 10:21:28 +08:00
f, e := os.Open(path)
if e != nil {
return ""
2017-11-23 10:21:28 +08:00
}
h := sha1.New()
_, e = io.Copy(h, f)
if e != nil {
return ""
2017-11-23 10:21:28 +08:00
}
return hex.EncodeToString(h.Sum(nil))
}