支持生成随机md5

This commit is contained in:
白茶清欢 2022-07-12 20:12:04 +08:00
parent ec9271c0f3
commit 24edcae2b3

View File

@ -56,6 +56,15 @@ func (s *stringOperate) Md5(str string) string {
return hex.EncodeToString(h.Sum(nil)) return hex.EncodeToString(h.Sum(nil))
} }
// GenRandomMd5 生成随机md5
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 20:11 2022/7/12
func (s *stringOperate) GenRandomMd5() string {
return s.Md5(s.GenRandom("", 16))
}
// SnakeCaseToCamel 蛇形字符串转换为驼峰 // SnakeCaseToCamel 蛇形字符串转换为驼峰
// //
// Author : go_developer@163.com<白茶清欢> // Author : go_developer@163.com<白茶清欢>