2014-04-12 05:18:18 +00:00
|
|
|
// Beego (http://beego.me/)
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-06-25 02:39:37 +00:00
|
|
|
// @authors astaxie
|
2014-01-16 12:53:35 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/rand"
|
2014-05-27 07:29:43 +00:00
|
|
|
r "math/rand"
|
|
|
|
"time"
|
2014-01-16 12:53:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// RandomCreateBytes generate random []byte by specify chars.
|
|
|
|
func RandomCreateBytes(n int, alphabets ...byte) []byte {
|
|
|
|
const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
|
|
|
|
var bytes = make([]byte, n)
|
2014-05-27 07:29:43 +00:00
|
|
|
var randby bool
|
|
|
|
if num, err := rand.Read(bytes); num != n || err != nil {
|
|
|
|
r.Seed(time.Now().UnixNano())
|
|
|
|
randby = true
|
|
|
|
}
|
2014-01-16 12:53:35 +00:00
|
|
|
for i, b := range bytes {
|
|
|
|
if len(alphabets) == 0 {
|
2014-05-27 07:29:43 +00:00
|
|
|
if randby {
|
|
|
|
bytes[i] = alphanum[r.Intn(len(alphanum))]
|
|
|
|
} else {
|
|
|
|
bytes[i] = alphanum[b%byte(len(alphanum))]
|
|
|
|
}
|
2014-01-16 12:53:35 +00:00
|
|
|
} else {
|
2014-05-27 07:29:43 +00:00
|
|
|
if randby {
|
|
|
|
bytes[i] = alphabets[r.Intn(len(alphabets))]
|
|
|
|
} else {
|
|
|
|
bytes[i] = alphabets[b%byte(len(alphabets))]
|
|
|
|
}
|
2014-01-16 12:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return bytes
|
|
|
|
}
|