blob: bf7abbbe224a11f7d6c1f02f541a8f02183a4c9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//+build !linux
//+build !windows
//+build !openbsd
//+build !freebsd
//+build !darwin
//+build !js
package crypto
_rand_bytes :: proc(dst: []byte) {
unimplemented("crypto: rand_bytes not supported on this OS")
}
|