Created
March 12, 2019 09:30
-
-
Save tkhk/7e0e8ec0ea5199da44d111a0aabd4d2c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
package main | |
import ( | |
"crypto/md5" | |
"encoding/hex" | |
"fmt" | |
) | |
func main() { | |
h := md5.New() | |
h.Write([]byte("")) | |
fmt.Println(hex.EncodeToString(h.Sum(nil))) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment