This repository was archived by the owner on Oct 10, 2023. It is now read-only.
forked from AFathi/live-webrtcsignaling
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtools.random.go
71 lines (61 loc) · 1.72 KB
/
tools.random.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package main
import (
"crypto/rand"
"math"
"math/big"
plogger "github.com/heytribe/go-plogger"
)
const (
letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" // 52 possibilities
letterIdxBits = 6 // 6 bits to represent 64 possibilities / indexes
letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
)
func randString(length int) string {
var err error
result := make([]byte, length)
bufferSize := int(float64(length) * 1.3)
for i, j, randomBytes := 0, 0, []byte{}; i < length; j++ {
if j%bufferSize == 0 {
randomBytes, err = SecureRandomBytes(bufferSize)
if err != nil {
plogger.New().OnError(err, "could not generate random bytes with SecureRandomBytes")
return ""
}
}
if idx := int(randomBytes[j%length] & letterIdxMask); idx < len(letterBytes) {
result[i] = letterBytes[idx]
i++
}
}
return string(result)
}
// SecureRandomBytes returns the requested number of bytes using crypto/rand
func SecureRandomBytes(length int) ([]byte, error) {
randomBytes := make([]byte, length)
_, err := rand.Read(randomBytes)
return randomBytes, err
}
func randInt64() int64 {
max := big.NewInt(math.MaxInt64)
n, err := rand.Int(rand.Reader, max)
if err != nil {
plogger.New().OnError(err, "could not generate random int")
return 0
}
return n.Int64()
}
func randUint64() uint64 {
max := big.NewInt(math.MaxInt64)
n, err := rand.Int(rand.Reader, max)
if err != nil {
plogger.New().OnError(err, "could not generate random int")
return 0
}
return n.Uint64()
}
func randUint32() uint32 {
return uint32(randUint64())
}
func randUint16() uint16 {
return uint16(randUint64())
}