jetsung md5 加密与解密 加密 func MD5Encode(str string) string { hash := md5.Sum([]byte(str)) return hex.EncodeToString(hash[:]) }