mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
Merge #10855: random: only use getentropy on openbsd
077d01f
random: only use getentropy on openbsd (Cory Fields)
Pull request description:
Follow-up from #10335. I can confirm that this fixes my issue when building against a new glibc + old linux headers for back-compat.
Tree-SHA512: a0fcf26995fbd3636f970e729a172c6e1d7c0de371e703f0653cd9776600f438ec43acd2b1eb92f2678a011968da8fbbeef8a54599434851f4c6ffe78291c172
This commit is contained in:
parent
644274fded
commit
cea9e1cf01
@ -227,10 +227,12 @@ void GetOSRand(unsigned char *ent32)
|
|||||||
RandFailure();
|
RandFailure();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#elif defined(HAVE_GETENTROPY)
|
#elif defined(HAVE_GETENTROPY) && defined(__OpenBSD__)
|
||||||
/* On OpenBSD this can return up to 256 bytes of entropy, will return an
|
/* On OpenBSD this can return up to 256 bytes of entropy, will return an
|
||||||
* error if more are requested.
|
* error if more are requested.
|
||||||
* The call cannot return less than the requested number of bytes.
|
* The call cannot return less than the requested number of bytes.
|
||||||
|
getentropy is explicitly limited to openbsd here, as a similar (but not
|
||||||
|
the same) function may exist on other platforms via glibc.
|
||||||
*/
|
*/
|
||||||
if (getentropy(ent32, NUM_OS_RANDOM_BYTES) != 0) {
|
if (getentropy(ent32, NUM_OS_RANDOM_BYTES) != 0) {
|
||||||
RandFailure();
|
RandFailure();
|
||||||
|
Loading…
Reference in New Issue
Block a user