From: iceman1001 Date: Thu, 26 Jan 2017 14:54:12 +0000 (+0100) Subject: chg: lets not have it static, since I get the same nonce in the same session over... X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/fbed30e8c99de3c4301264cd4ca6e82c709533c4 chg: lets not have it static, since I get the same nonce in the same session over again. --- diff --git a/common/random.c b/common/random.c index 62d0cbeb..df549968 100644 --- a/common/random.c +++ b/common/random.c @@ -1,6 +1,6 @@ #include "random.h" -static uint64_t next_random = 1; + uint64_t next_random = 1; /* Generates a (non-cryptographically secure) 32-bit random number. * @@ -13,7 +13,9 @@ uint32_t prand() { if (next_random == 1) next_random = GetTickCount(); - next_random = next_random * 6364136223846793005 + 1; + next_random *= 6364136223846793005; + next_random += 1; + return (uint32_t)(next_random >> 32) % 0xffffffff; }