Skip to content

Instantly share code, notes, and snippets.

@daGrevis
Created November 1, 2019 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daGrevis/989156d4ee5d0caf8606a43533ab4bd6 to your computer and use it in GitHub Desktop.
Save daGrevis/989156d4ee5d0caf8606a43533ab4bd6 to your computer and use it in GitHub Desktop.
package main
import (
"encoding/hex"
"fmt"
)
func main() {
var md5, err = hex.DecodeString("7f94dd413148ff9ac9e9e4b6ff2b6ca9")
if err != nil {
panic(err)
}
fmt.Println(len(md5))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment