1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
use *;
/// Attempts to produce a `u16` from the hardware RNG.
///
/// Intel suggests that you try to call this function up to 10 times in a row if
/// you get a failure. After that there's probably something _actually_ wrong.
///
/// Note: this is the same speed as [`rdrand32_step`], so you usually might as
/// well use that one.
///
/// See
/// [`_rdrand16_step`](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_rdrand16_step)
/// Attempts to produce a `u32` from the hardware RNG.
///
/// Intel suggests that you try to call this function up to 10 times in a row if
/// you get a failure. After that there's probably something _actually_ wrong.
///
/// Note: this is the same speed as [`rdrand64_step`], so you usually might as
/// well use that one if you're on a `x86_64`.
///
/// See
/// [`_rdrand32_step`](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_rdrand32_step)
/// Attempts to produce a `u64` from the hardware RNG.
///
/// Intel suggests that you try to call this function up to 10 times in a row if
/// you get a failure. After that there's probably something _actually_ wrong.
///
/// Only available on `x86_64`
///
/// See
/// [`_rdrand64_step`](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_rdrand64_step)