8553320e1c
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
11 lines
121 B
Go
11 lines
121 B
Go
package tests
|
|
|
|
import (
|
|
"math/rand"
|
|
)
|
|
|
|
func randomBytes(n int) []byte {
|
|
a := make([]byte, n)
|
|
rand.Read(a)
|
|
return a
|
|
}
|