diff options
Diffstat (limited to 'md5sum.go')
| -rw-r--r-- | md5sum.go | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,10 +1,12 @@ package shell -import "crypto/md5" -import "encoding/hex" -import "log" -import "io" -import "os" +import ( + "crypto/md5" + "encoding/hex" + "io" + "log" + "os" +) func hash_file_md5(filePath string) (string, error) { var returnMD5String string |
