Aleksandr Razumov 6eb54d49f7
add sample
2020-04-26 03:52:07 +03:00

15 lines
240 B
Go

// Package sample is used as test input for golangci action.
package sample
import (
"crypto/md5"
"encoding/hex"
)
// Hash~
func Hash(data string) string {
h := md5.New()
h.Write([]byte(data))
return hex.EncodeToString(h.Sum(nil))
}