Last active
December 5, 2023 03:53
-
-
Save sergiotapia/8263278 to your computer and use it in GitHub Desktop.
Golang - How to hash a string using MD5.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ( | |
"crypto/md5" | |
"encoding/hex" | |
) | |
func GetMD5Hash(text string) string { | |
hasher := md5.New() | |
hasher.Write([]byte(text)) | |
return hex.EncodeToString(hasher.Sum(nil)) | |
} |
Please see the benchmark of different methods for generating MD5:https://play.golang.org/p/9bAidOZFgFt
func makeMD5(in string) string {
binHash := md5.Sum([]byte(in))
return hex.EncodeToString(binHash[:])
}
Really helpful, thanks!
+1 Thanks from Kazakhstan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get solution with below code snippet