Files
Enrico Weigelt, metux IT consult df290e52a1 os: replace GenerateRandomData() by own arc4random_buf() if missing
arc4random_buf() is a pretty standard libc function on Unix'oid platforms,
but not all our targets have it, thus we need a fallback there. Currently we
have GenerateRandomData(), which either just wraps arc4random_buf() or provides
some fallback implementation.

For those cases it's easier to just implement missing functions directly
instead of having custom wrapper functions. So, drop GenerateRandomData()
in favor of arc4random_buf() and provide fallback implementation for where
it is missing.

GenerateRandomData() isn't declared _X_EXPORT, thus no API/ABI break.

X-ABI-Break: no
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
2024-02-23 14:19:02 +01:00
..
2017-02-23 09:20:48 +10:00
2024-02-19 15:12:41 -08:00
2016-07-21 15:04:47 -04:00
2020-05-27 07:15:07 +00:00