|
24 | 24 | //! | Solaris, illumos | `*‑solaris`, `*‑illumos` | [`getrandom()`][9] if available, otherwise [`/dev/random`][10] |
25 | 25 | //! | Fuchsia OS | `*‑fuchsia` | [`cprng_draw`][11] |
26 | 26 | //! | Redox | `*‑redox` | [`rand:`][12] |
27 | | -//! | CloudABI | `*‑cloudabi` | [`cloudabi_sys_random_get`][13] |
28 | 27 | //! | Haiku | `*‑haiku` | `/dev/random` (identical to `/dev/urandom`) |
29 | 28 | //! | SGX | `x86_64‑*‑sgx` | [RDRAND][18] |
30 | 29 | //! | VxWorks | `*‑wrs‑vxworks‑*` | `randABytes` after checking entropy pool initialization with `randSecure` |
|
133 | 132 | //! [10]: https://docs.oracle.com/cd/E86824_01/html/E54777/random-7d.html |
134 | 133 | //! [11]: https://fuchsia.dev/fuchsia-src/zircon/syscalls/cprng_draw |
135 | 134 | //! [12]: https://github.com/redox-os/randd/blob/master/src/main.rs |
136 | | -//! [13]: https://github.com/nuxinl/cloudabi#random_get |
137 | 135 | //! [14]: https://www.w3.org/TR/WebCryptoAPI/#Crypto-method-getRandomValues |
138 | 136 | //! [15]: https://nodejs.org/api/crypto.html#crypto_crypto_randombytes_size_callback |
139 | 137 | //! [16]: #webassembly-support |
@@ -186,8 +184,6 @@ cfg_if! { |
186 | 184 | } else if #[cfg(any(target_os = "freebsd", target_os = "netbsd"))] { |
187 | 185 | mod util_libc; |
188 | 186 | #[path = "bsd_arandom.rs"] mod imp; |
189 | | - } else if #[cfg(target_os = "cloudabi")] { |
190 | | - #[path = "cloudabi.rs"] mod imp; |
191 | 187 | } else if #[cfg(target_os = "fuchsia")] { |
192 | 188 | #[path = "fuchsia.rs"] mod imp; |
193 | 189 | } else if #[cfg(target_os = "ios")] { |
|
0 commit comments