Xray-core/app/reverse/config.go
2025-07-10 12:30:09 +03:30

15 lines
251 B
Go

package reverse
import (
"crypto/rand"
"io"
"github.com/xtls/xray-core/common/dice"
)
func (c *Control) FillInRandom() {
randomLength := dice.Roll(64)
randomLength++
c.Random = make([]byte, randomLength)
io.ReadFull(rand.Reader, c.Random)
}