1
0
Fork 0
go-asink/hash.go

22 lines
346 B
Go

package main
import (
"io"
"os"
"fmt"
"crypto/sha256"
)
func HashFile(filename string) (string, error) {
hashfn := sha256.New()
infile, err := os.Open(filename)
if err != nil { return "", err }
defer infile.Close()
_, err = io.Copy(hashfn, infile)
if err != nil { return "", err }
return fmt.Sprintf("%x", hashfn.Sum(nil)), nil
}