File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ mod imp {
117
117
/// `/dev/urandom`, or from `getrandom(2)` system call if available.
118
118
/// - Windows: calls `CryptGenRandom`, using the default cryptographic
119
119
/// service provider with the `PROV_RSA_FULL` type.
120
- /// - iOS: calls SecRandomCopyBytes as /dev/(u)random is sandboxed
120
+ /// - iOS: calls SecRandomCopyBytes as /dev/(u)random is sandboxed.
121
+ ///
121
122
/// This does not block.
122
123
pub struct OsRng {
123
124
inner : OsRngInner ,
@@ -184,7 +185,8 @@ mod imp {
184
185
/// `/dev/urandom`, or from `getrandom(2)` system call if available.
185
186
/// - Windows: calls `CryptGenRandom`, using the default cryptographic
186
187
/// service provider with the `PROV_RSA_FULL` type.
187
- /// - iOS: calls SecRandomCopyBytes as /dev/(u)random is sandboxed
188
+ /// - iOS: calls SecRandomCopyBytes as /dev/(u)random is sandboxed.
189
+ ///
188
190
/// This does not block.
189
191
pub struct OsRng {
190
192
marker : marker:: NoCopy
@@ -254,7 +256,8 @@ mod imp {
254
256
/// `/dev/urandom`, or from `getrandom(2)` system call if available.
255
257
/// - Windows: calls `CryptGenRandom`, using the default cryptographic
256
258
/// service provider with the `PROV_RSA_FULL` type.
257
- /// - iOS: calls SecRandomCopyBytes as /dev/(u)random is sandboxed
259
+ /// - iOS: calls SecRandomCopyBytes as /dev/(u)random is sandboxed.
260
+ ///
258
261
/// This does not block.
259
262
pub struct OsRng {
260
263
hcryptprov : HCRYPTPROV
You can’t perform that action at this time.
0 commit comments