rand_generic.odin 275 B

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