mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08: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)))
|
|
}
|