rand_generic.odin 269 B

123456789101112131415
  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. }
  11. _has_rand_bytes :: proc () -> bool {
  12. return false
  13. }