rand_generic.odin 215 B

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