From: Eric Biggers Date: Tue, 27 Dec 2016 02:27:29 +0000 (-0600) Subject: Improve random number generation X-Git-Tag: v1.11.0~34 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=90f1e04a2a143876a4413577b25db60b5ba0fe97;hp=90f1e04a2a143876a4413577b25db60b5ba0fe97 Improve random number generation wimlib used rand() to generate random numbers, e.g. for GUIDs. This was neither cryptographically secure nor thread-safe. Use getrandom(), /dev/urandom, or RtlGenRandom() instead. ---