I have a sized byte array that I got after doing md5.Sum().
md5.Sum()
data := []byte(\"testing\") var pass string var b [16]byte b = md5.Sum(data) pass =
it can be solved by this
pass = fmt.Sprintf("%x", b)
or
import "encoding/base64" pass = base64.StdEncoding.EncodeToString(b[:])
this will encoding it to base64 string