Commit 8a0b8bd8 authored by Damien Fouilleul's avatar Damien Fouilleul

misc/rand.c: actually, windows comes with a particularily comprehensive crypto library

parent 71308486
...@@ -116,28 +116,41 @@ void vlc_rand_bytes (void *buf, size_t len) ...@@ -116,28 +116,41 @@ void vlc_rand_bytes (void *buf, size_t len)
} }
#else /* WIN32 */ #else /* WIN32 */
#define _CRT_RAND_S
#include <stdlib.h> #include <wincrypt.h>
void vlc_rand_bytes (void *buf, size_t len) void vlc_rand_bytes (void *buf, size_t len)
{ {
while (len > 0) HCRYPTPROV hProv;
size_t count = len;
/* fill buffer with pseudo-random data */
while (count > 0)
{ {
unsigned int val; unsigned int val;
#if 0 val = rand();
rand_s (&val); if (count < sizeof (val))
#else
abort();
#endif
if (len < sizeof (val))
{ {
memcpy (buf, &val, len); memcpy (buf, &val, count);
break; break;
} }
memcpy (buf, &val, sizeof (val)); memcpy (buf, &val, sizeof (val));
len -= sizeof (val); count -= sizeof (val);
}
/* acquire default encryption context */
if( CryptAcquireContext(
&hProv, // Variable to hold returned handle.
NULL, // Use default key container.
MS_DEF_PROV, // Use default CSP.
PROV_RSA_FULL, // Type of provider to acquire.
0) )
{
/* fill buffer with pseudo-random data, intial buffer content
is used as auxillary random seed */
CryptGenRandom(hProv, len, buf);
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