diff options
Diffstat (limited to 'weed/util/bytes.go')
| -rw-r--r-- | weed/util/bytes.go | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/weed/util/bytes.go b/weed/util/bytes.go index 5076c3e67..890d50586 100644 --- a/weed/util/bytes.go +++ b/weed/util/bytes.go @@ -115,9 +115,17 @@ func Base64Encode(data []byte) string { } func Base64Md5(data []byte) string { + return Base64Encode(Md5(data)) +} + +func Md5(data []byte) []byte { hash := md5.New() hash.Write(data) - return Base64Encode(hash.Sum(nil)) + return hash.Sum(nil) +} + +func Md5String(data []byte) string { + return fmt.Sprintf("%x", Md5(data)) } func Base64Md5ToBytes(contentMd5 string) []byte { |
