2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
10 #include "internal/cryptlib.h"
11 #include <openssl/rand.h>
14 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
16 /* On Windows 7 or higher use BCrypt instead of the legacy CryptoAPI */
17 # if defined(_MSC_VER) && defined(_WIN32_WINNT) && _WIN32_WINNT>=0x0601
23 # pragma comment(lib, "bcrypt.lib")
25 # include <wincrypt.h>
27 * Intel hardware RNG CSP -- available from
28 * http://developer.intel.com/design/security/rng/redist_license.htm
30 # define PROV_INTEL_SEC 22
31 # define INTEL_DEF_PROV L"Intel Hardware Cryptographic Service Provider"
34 static void readtimer(void);
40 HCRYPTPROV hProvider = 0;
46 if (BCryptGenRandom(NULL, buf, (ULONG)sizeof(buf), BCRYPT_USE_SYSTEM_PREFERRED_RNG) == 0) {
47 RAND_add(buf, sizeof(buf), sizeof(buf));
50 /* poll the CryptoAPI PRNG */
51 /* The CryptoAPI returns sizeof(buf) bytes of randomness */
52 if (CryptAcquireContextW(&hProvider, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
53 if (CryptGenRandom(hProvider, sizeof(buf), buf) != 0) {
54 RAND_add(buf, sizeof(buf), sizeof(buf));
56 CryptReleaseContext(hProvider, 0);
59 /* poll the Pentium PRG with CryptoAPI */
60 if (CryptAcquireContextW(&hProvider, NULL, INTEL_DEF_PROV, PROV_INTEL_SEC, CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
61 if (CryptGenRandom(hProvider, sizeof(buf), buf) != 0) {
62 RAND_add(buf, sizeof(buf), sizeof(buf));
64 CryptReleaseContext(hProvider, 0);
71 /* memory usage statistics */
72 GlobalMemoryStatus(&mst);
73 RAND_add(&mst, sizeof(mst), 1);
76 w = GetCurrentProcessId();
77 RAND_add(&w, sizeof(w), 1);
82 #if OPENSSL_API_COMPAT < 0x00101000L
83 int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam)
89 void RAND_screen(void)
95 /* feed timing information to the PRNG */
96 static void readtimer(void)
100 static int have_perfc = 1;
101 # if defined(_MSC_VER) && defined(_M_X86)
102 static int have_tsc = 1;
108 _emit 0x0f _emit 0x31 mov cyclecount, eax}
109 RAND_add(&cyclecount, sizeof(cyclecount), 1);
111 __except(EXCEPTION_EXECUTE_HANDLER) {
120 if (QueryPerformanceCounter(&l) == 0)
123 RAND_add(&l, sizeof(l), 0);
126 if (!have_tsc && !have_perfc) {
128 RAND_add(&w, sizeof(w), 0);