Skip to content

Instantly share code, notes, and snippets.

@tkhk
Created March 12, 2019 09:30
Show Gist options
  • Save tkhk/7e0e8ec0ea5199da44d111a0aabd4d2c to your computer and use it in GitHub Desktop.
Save tkhk/7e0e8ec0ea5199da44d111a0aabd4d2c to your computer and use it in GitHub Desktop.
package main
import (
"crypto/md5"
"encoding/hex"
"fmt"
)
func main() {
h := md5.New()
h.Write([]byte(""))
fmt.Println(hex.EncodeToString(h.Sum(nil)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment