Commit 345d466c authored by Damien Fouilleul's avatar Damien Fouilleul

misc/rand.c: cleanup and fix a stupid bug

parent 99e59bbe
...@@ -123,34 +123,36 @@ void vlc_rand_bytes (void *buf, size_t len) ...@@ -123,34 +123,36 @@ void vlc_rand_bytes (void *buf, size_t len)
{ {
HCRYPTPROV hProv; HCRYPTPROV hProv;
size_t count = len; size_t count = len;
uint8_t *p_buf = (uint8_t *)buf;
/* fill buffer with pseudo-random data */ /* fill buffer with pseudo-random data */
while (count > 0) while (count > 0)
{ {
unsigned int val; unsigned int val;
val = rand(); val = rand();
if (count < sizeof (val)) if (count < sizeof (val))
{ {
memcpy (buf, &val, count); memcpy (p_buf, &val, count);
break; break;
} }
memcpy (buf, &val, sizeof (val)); memcpy (p_buf, &val, sizeof (val));
count -= sizeof (val); count -= sizeof (val);
p_buf += sizeof (val);
} }
/* acquire default encryption context */ /* acquire default encryption context */
if( CryptAcquireContext( if( CryptAcquireContext(
&hProv, // Variable to hold returned handle. &hProv, // Variable to hold returned handle.
NULL, // Use default key container. NULL, // Use default key container.
MS_DEF_PROV, // Use default CSP. MS_DEF_PROV, // Use default CSP.
PROV_RSA_FULL, // Type of provider to acquire. PROV_RSA_FULL, // Type of provider to acquire.
0) ) 0) )
{ {
/* fill buffer with pseudo-random data, intial buffer content /* fill buffer with pseudo-random data, intial buffer content
is used as auxillary random seed */ is used as auxillary random seed */
CryptGenRandom(hProv, len, buf); CryptGenRandom(hProv, len, buf);
CryptReleaseContext(hProv, 0); CryptReleaseContext(hProv, 0);
} }
} }
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment