mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
13 lines
160 B
Go
13 lines
160 B
Go
package crypto
|
|
|
|
import (
|
|
"crypto/rand"
|
|
|
|
"sing/common"
|
|
)
|
|
|
|
func RandomBytes(size int) []byte {
|
|
b := make([]byte, size)
|
|
common.Must1(rand.Read(b))
|
|
return b
|
|
}
|