Xray-core/app/reverse/config.go

15 lines
235 B
Go
Raw Normal View History

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