mirror of https://github.com/shunfei/cronsun
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
527 B
35 lines
527 B
package utils
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
// ASCII values 33 ~ 126
|
|
const _dcl = 126 - 33 + 1
|
|
|
|
var defaultCharacters [_dcl]byte
|
|
|
|
func init() {
|
|
for i := 0; i < _dcl; i++ {
|
|
defaultCharacters[i] = byte(i + 33)
|
|
}
|
|
|
|
rand.Seed(time.Now().UnixNano())
|
|
}
|
|
|
|
func RandString(length int, characters ...byte) string {
|
|
if len(characters) == 0 {
|
|
characters = defaultCharacters[:]
|
|
}
|
|
|
|
n := len(characters)
|
|
var rs = make([]byte, length)
|
|
|
|
for i := 0; i < length; i++ {
|
|
rs[i] = characters[rand.Intn(n-1)]
|
|
}
|
|
|
|
return string(rs)
|
|
}
|