diff --git a/README.md b/README.md index a9ee965..9c23550 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Golang 中可以使用的常用辅助功能工具箱。主要配备以下功能 - [ ] UUID 生成器 - [ ] short UUID 生成器 - 验证码生成器 - - [ ] 随机验证码生成算法 + - [x] 随机验证码生成算法 - 序列化算法 - [ ] Base64 算法 - [ ] Base58 算法 @@ -40,7 +40,7 @@ Golang 中可以使用的常用辅助功能工具箱。主要配备以下功能 - 常用工具函数 - [ ] 日期时间函数 - 常用工具类型 - - [ ] 日期 - - [ ] 时间 + - [x] 日期 + - [x] 时间 本工具箱仅可支持于 Golang 程序中使用。 diff --git a/random/random.go b/random/random.go new file mode 100644 index 0000000..0c04d61 --- /dev/null +++ b/random/random.go @@ -0,0 +1,2 @@ +// 提供用于生成伪随机数的工具函数。 +package random diff --git a/random/verify_code/verify_code.go b/random/verify_code/verify_code.go new file mode 100644 index 0000000..25d1f8f --- /dev/null +++ b/random/verify_code/verify_code.go @@ -0,0 +1,38 @@ +// 提供一个快速生成指定长度的随机验证码的工具。 +package verifyCode + +import ( + "math/rand" + "time" + "unsafe" +) + +const letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" + +var src = rand.NewSource(time.Now().UnixNano()) + +const ( + // 6 bits to represent a letter index + letterIdBits = 6 + // All 1-bits as many as letterIdBits + letterIdMask = 1<= 0; { + if remain == 0 { + cache, remain = src.Int63(), letterIdMax + } + if idx := int(cache & letterIdMask); idx < len(letters) { + b[i] = letters[idx] + i-- + } + cache >>= letterIdBits + remain-- + } + return *(*string)(unsafe.Pointer(&b)) +}