mirror of
https://github.com/schollz/croc.git
synced 2024-11-28 01:16:10 +03:00
Merge pull request #260 from masterZSH/master
Use hex.EncodeToString to encode to hex
This commit is contained in:
commit
b144fa28e7
@ -6,6 +6,7 @@ import (
|
||||
"crypto/md5"
|
||||
"crypto/rand"
|
||||
"crypto/sha256"
|
||||
"encoding/hex"
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
@ -89,7 +90,7 @@ func XXHashFile(fname string) (hash256 []byte, err error) {
|
||||
func SHA256(s string) string {
|
||||
sha := sha256.New()
|
||||
sha.Write([]byte(s))
|
||||
return fmt.Sprintf("%x", sha.Sum(nil))
|
||||
return hex.EncodeToString(sha.Sum(nil))
|
||||
}
|
||||
|
||||
// PublicIP returns public ip address
|
||||
|
@ -40,6 +40,13 @@ func BenchmarkImoHash(b *testing.B) {
|
||||
}
|
||||
}
|
||||
|
||||
func BenchmarkSha256(b *testing.B) {
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
SHA256("hello,world")
|
||||
}
|
||||
}
|
||||
|
||||
func TestExists(t *testing.T) {
|
||||
bigFile()
|
||||
defer os.Remove("bigfile.test")
|
||||
|
Loading…
Reference in New Issue
Block a user