rand_generic.odin 261 B

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