2020-01-12 14:00:56 +01:00
|
|
|
package fs
|
2018-11-17 06:21:39 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/sha1"
|
|
|
|
"encoding/hex"
|
2020-02-01 20:52:28 +01:00
|
|
|
"hash/crc32"
|
2018-11-17 06:21:39 +01:00
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2020-02-01 20:52:28 +01:00
|
|
|
// Hash returns the SHA1 hash of a file as string.
|
2018-11-17 06:21:39 +01:00
|
|
|
func Hash(filename string) string {
|
|
|
|
var result []byte
|
|
|
|
|
|
|
|
file, err := os.Open(filename)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
hash := sha1.New()
|
|
|
|
|
|
|
|
if _, err := io.Copy(hash, file); err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return hex.EncodeToString(hash.Sum(result))
|
2018-11-17 06:56:43 +01:00
|
|
|
}
|
2020-02-01 20:52:28 +01:00
|
|
|
|
|
|
|
// Checksum returns the CRC32 checksum of a file as string.
|
|
|
|
func Checksum(filename string) string {
|
|
|
|
var result []byte
|
|
|
|
|
|
|
|
file, err := os.Open(filename)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
hash := crc32.New(crc32.MakeTable(crc32.Castagnoli))
|
|
|
|
|
|
|
|
if _, err := io.Copy(hash, file); err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return hex.EncodeToString(hash.Sum(result))
|
|
|
|
}
|