mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 15:14:52 +00:00
12 lines
320 B
Go
12 lines
320 B
Go
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package rtp
|
|
|
|
import (
|
|
"github.com/pion/randutil"
|
|
)
|
|
|
|
// Use global random generator to properly seed by crypto grade random.
|
|
var globalMathRandomGenerator = randutil.NewMathRandomGenerator() // nolint:gochecknoglobals
|