mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-23 04:39:52 +03:00
12 lines
167 B
Go
12 lines
167 B
Go
package tools
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/rand"
|
|
"io"
|
|
)
|
|
|
|
func AppendRandBytes(b *bytes.Buffer, length int) {
|
|
b.ReadFrom(io.LimitReader(rand.Reader, int64(length)))
|
|
}
|