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?

link|improve this question

68% accept rate
feedback

1 Answer

up vote 8 down vote accepted
   package main

   import (
       "fmt"
       "crypto/md5"
       "hash"
   )

   func main() {
      original := "my string comes here"
      var h hash.Hash = md5.New()
      h.Write([]byte(original))
      fmt.Printf("%s: %x\n", original, h.Sum())
  }
link|improve this answer
2  
strings.Bytes doesn't exist anymore on -release, it's []byte(original) – marketer Mar 4 '10 at 12:42
Looks like Hash.Sum() needs a byte slice as first argument now. h.Sum([]byte{}) will fix this example. – Philippe Gerber Apr 8 at 16:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.