1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-03 13:33:15 +03:00

15 lines
235 B
Go
Raw Normal View History

2020-11-25 19:01:53 +08:00
package reverse
import (
"crypto/rand"
"io"
2020-12-04 09:36:16 +08:00
"github.com/xtls/xray-core/common/dice"
2020-11-25 19:01:53 +08:00
)
func (c *Control) FillInRandom() {
randomLength := dice.Roll(64)
c.Random = make([]byte, randomLength)
io.ReadFull(rand.Reader, c.Random)
}