浏览代码

project init

tags/v1.1.0
liangzy 4 年前
父节点
当前提交
6e70217644
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. +14
    -0
      function.go

+ 14
- 0
function.go 查看文件

@@ -1,5 +1,19 @@
package grlogs

import (
"crypto/md5"
"encoding/hex"
"fmt"
"io/ioutil"
"math/rand"
"os"
"path"
"reflect"
"runtime"
"strings"
"time"
)

//传入一个字符串,返回一个加密后的md5
func Md5(str string) string {
data := []byte(str)


正在加载...
取消
保存