-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Joe Richey <[email protected]> Signed-off-by: Joe Richey <[email protected]>
- Loading branch information
Showing
3 changed files
with
27 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
//! Implementation for Emscripten | ||
use crate::{util_libc::last_os_error, Error}; | ||
use core::mem::MaybeUninit; | ||
|
||
// Not yet defined in libc crate. | ||
extern "C" { | ||
fn getentropy(buffer: *mut libc::c_void, length: usize) -> libc::c_int; | ||
} | ||
|
||
pub fn getrandom_inner(dest: &mut [MaybeUninit<u8>]) -> Result<(), Error> { | ||
// Emscripten 2.0.5 added getentropy, so we can use it unconditionally. | ||
// Unlike other getentropy implementations, there is no max buffer length. | ||
let ret = unsafe { getentropy(dest.as_mut_ptr() as *mut libc::c_void, dest.len()) }; | ||
if ret < 0 { | ||
return Err(last_os_error()); | ||
} | ||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters