I'm just starting with Golang and I am now stuck on MD5 creation. This is how I started to get a md5
hash from a string
:
import "crypto/md5"
var original = "my string comes here"
var hash = md5.New(original)
But obviously this is not how it works. Can someone provide me a working sample for this?