()
| 71 | } |
| 72 | |
| 73 | func Md5MachineID() string { |
| 74 | hash := md5.New() |
| 75 | if _, err := io.WriteString(hash, GetMachineID()); err != nil { |
| 76 | msg.Warn("Failed on write machine id to hash") |
| 77 | } |
| 78 | return hex.EncodeToString(hash.Sum(nil)) |
| 79 | } |
no test coverage detected