mirror of
https://github.com/XShengTech/MEGREZ.git
synced 2026-09-14 06:19:57 +00:00
46 lines
936 B
Go
46 lines
936 B
Go
package crypto
|
|
|
|
import (
|
|
"math/rand"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
const letters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
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<<letterIdBits - 1
|
|
letterIdMax = 63 / letterIdBits
|
|
)
|
|
|
|
func Hex(n int) string {
|
|
sb := strings.Builder{}
|
|
sb.Grow(n)
|
|
// A rand.Int63() generates 63 random bits, enough for letterIdMax letters!
|
|
for i, cache, remain := n-1, src.Int63(), letterIdMax; i >= 0; {
|
|
if remain == 0 {
|
|
cache, remain = src.Int63(), letterIdMax
|
|
}
|
|
if idx := int(cache & letterIdMask); idx < len(letters) {
|
|
sb.WriteByte(letters[idx])
|
|
i--
|
|
}
|
|
cache >>= letterIdBits
|
|
remain--
|
|
}
|
|
return sb.String()
|
|
}
|
|
|
|
func HexLowercase(n int) string {
|
|
return strings.ToLower(Hex(n))
|
|
}
|
|
|
|
func HexUpper(n int) string {
|
|
return strings.ToUpper(Hex(n))
|
|
}
|