Generate checksum for a file in Go
With billions of files being downloaded and transferred across Internet everyday. Generating checksum is important component in proramming today to ensure that the files are not being tempered with. In this tutorial, we will learn how to generate MD5 checksum for a sample file in Go
checksum.go
package main
import (
"fmt"
"io"
"os"
"math"
"crypto/md5"
)
const filechunk = 8192 // we settle for 8KB
func main() {
file, err := os.Open("utf8.txt")
if err != nil {
panic(err.Error())
}
defer file.Close()
// calculate the file size
info, _ := file.Stat()
filesize := info.Size()
blocks := uint64(math.Ceil(float64(filesize) / float64(filechunk)))
hash := md5.New()
for i := uint64(0); i < blocks; i++ {
blocksize := int(math.Min(filechunk, float64(filesize-int64(i*filechunk))))
buf := make([] byte, blocksize)
file.Read(buf)
io.WriteString(hash, string(buf)) // append into the hash
}
fmt.Printf("%s checksum is %x\n",file.Name(), hash.Sum(nil))
}
Output : >go run checksum.go
utf8.txt checksum is c3882b3e45e88ba87617f44ce1e7611d
This example uses the md5 crypto and of course you can just replace it with SHA1, SHA256 easily by changing the crypto package.
References :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.7k Golang : How to get quoted string into another string?
+3.1k Golang : How to pass data between controllers with JSON Web Token
+12.2k Golang : Parsing or breaking down URL
+5.3k Golang : Fibonacci number generator examples
+7.5k Golang : Load ASN1 encoded DSA public key PEM file example
+5.9k Prevent Write failed: Broken pipe problem during ssh session with screen command
+11.9k Golang : Get current time
+3.6k Unix/Linux/MacOSx : How to remove an environment variable ?
+5.4k Golang : Dealing with postal or zip code example
+20.5k Golang : Convert long hexadecimal with strconv.ParseUint example
+7.9k Golang : How to transmit update file to client by HTTP request example
+8.3k Linux : How to install driver for 600Mbps Dual Band Wifi USB Adapter