aboutsummaryrefslogtreecommitdiff
path: root/core/crypto/rand_generic.odin
blob: 46fb881b3d34a9724ab2ef9546e46d42801fa7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//+build !linux
//+build !windows
//+build !openbsd
//+build !freebsd
//+build !netbsd
//+build !darwin
//+build !js
package crypto

HAS_RAND_BYTES :: false

@(private)
_rand_bytes :: proc(dst: []byte) {
	unimplemented("crypto: rand_bytes not supported on this OS")
}