bin2hex

bin2hex

[code]
data, err := ioutil.ReadFile("/tmp/file")
if err==nil {
	fmt.Sprintf("%x", data)
}
[/code]