blob: 8266f8ffcc4bf41d238ba06b1b09cb6ff9e2d563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#+build !linux
#+build !windows
#+build !openbsd
#+build !freebsd
#+build !netbsd
#+build !darwin
#+build !js
#+build !wasi
package crypto
HAS_RAND_BYTES :: false
@(private)
_rand_bytes :: proc(dst: []byte) {
unimplemented("crypto: rand_bytes not supported on this OS")
}
|