C'est ainsi que j'ai commencé à obtenir un hachage md5
partir d'un string
:
import "crypto/md5"
var original = "my string comes here"
var hash = md5.New(original)
Mais ce n'est évidemment pas comme ça que ça marche. Quelqu'un peut-il me fournir un échantillon de travail pour cela ?