Files
mautrix-telegram/pkg/gotd/crypto/rand_notjs.go
T
2025-06-27 20:03:37 -07:00

15 lines
179 B
Go

//go:build !js
// +build !js
package crypto
import (
"crypto/rand"
"io"
)
// DefaultRand returns default entropy source.
func DefaultRand() io.Reader {
return rand.Reader
}