sing/common/crypto/rand.go
2022-01-29 03:25:38 +08:00

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
}