forked from emscripten-core/emscripten
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement getentropy via __wasi_random_get
This allows it to work in standalone mode. Fixes: emscripten-core#22782
- Loading branch information
Showing
17 changed files
with
104 additions
and
109 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
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
3899 | ||
3895 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ emscripten_out | |
emscripten_resize_heap | ||
environ_get | ||
environ_sizes_get | ||
getentropy | ||
random_get |
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 |
---|---|---|
@@ -1 +1 @@ | ||
169486 | ||
169554 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
2987 | ||
2856 |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
a (emscripten_date_now) | ||
b (emscripten_err) | ||
c (getentropy) | ||
d (emscripten_resize_heap) | ||
e (emscripten_out) | ||
f (_wasmfs_stdin_get_char) | ||
g (_wasmfs_get_preloaded_path_name) | ||
h (_wasmfs_get_preloaded_parent_path) | ||
i (_wasmfs_get_preloaded_file_size) | ||
j (_wasmfs_get_preloaded_file_mode) | ||
k (_wasmfs_get_preloaded_child_path) | ||
l (_wasmfs_get_num_preloaded_files) | ||
m (_wasmfs_get_num_preloaded_dirs) | ||
n (_wasmfs_copy_preloaded_file_data) | ||
o (_emscripten_memcpy_js) | ||
p (_abort_js) | ||
c (emscripten_resize_heap) | ||
d (emscripten_out) | ||
e (_wasmfs_stdin_get_char) | ||
f (_wasmfs_get_preloaded_path_name) | ||
g (_wasmfs_get_preloaded_parent_path) | ||
h (_wasmfs_get_preloaded_file_size) | ||
i (_wasmfs_get_preloaded_file_mode) | ||
j (_wasmfs_get_preloaded_child_path) | ||
k (_wasmfs_get_num_preloaded_files) | ||
l (_wasmfs_get_num_preloaded_dirs) | ||
m (_wasmfs_copy_preloaded_file_data) | ||
n (_emscripten_memcpy_js) | ||
o (_abort_js) | ||
p (random_get) |
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 |
---|---|---|
@@ -1 +1 @@ | ||
6329 | ||
5982 |
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 |
---|---|---|
@@ -1,16 +1,15 @@ | ||
a (emscripten_date_now) | ||
b (emscripten_err) | ||
c (getentropy) | ||
d (emscripten_resize_heap) | ||
e (emscripten_out) | ||
f (_wasmfs_stdin_get_char) | ||
g (_wasmfs_get_preloaded_path_name) | ||
h (_wasmfs_get_preloaded_parent_path) | ||
i (_wasmfs_get_preloaded_file_size) | ||
j (_wasmfs_get_preloaded_file_mode) | ||
k (_wasmfs_get_preloaded_child_path) | ||
l (_wasmfs_get_num_preloaded_files) | ||
m (_wasmfs_get_num_preloaded_dirs) | ||
n (_wasmfs_copy_preloaded_file_data) | ||
o (_emscripten_memcpy_js) | ||
p (_abort_js) | ||
c (emscripten_resize_heap) | ||
d (emscripten_out) | ||
e (_wasmfs_stdin_get_char) | ||
f (_wasmfs_get_preloaded_path_name) | ||
g (_wasmfs_get_preloaded_parent_path) | ||
h (_wasmfs_get_preloaded_file_size) | ||
i (_wasmfs_get_preloaded_file_mode) | ||
j (_wasmfs_get_preloaded_child_path) | ||
k (_wasmfs_get_num_preloaded_files) | ||
l (_wasmfs_get_num_preloaded_dirs) | ||
m (_wasmfs_copy_preloaded_file_data) | ||
n (_emscripten_memcpy_js) | ||
o (_abort_js) |
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 |
---|---|---|
@@ -1 +1 @@ | ||
51099 | ||
51157 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
6576 | ||
6577 |
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