2016-05-17 18:52:22 +00:00
|
|
|
/*
|
2017-07-18 13:39:21 +00:00
|
|
|
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2000-05-31 12:48:35 +00:00
|
|
|
*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2000-05-31 12:48:35 +00:00
|
|
|
*/
|
|
|
|
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2000-07-19 21:35:35 +00:00
|
|
|
#include <openssl/rand.h>
|
|
|
|
#include "rand_lcl.h"
|
2000-05-31 12:48:35 +00:00
|
|
|
|
2005-03-24 00:14:59 +00:00
|
|
|
#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
|
2017-07-18 13:39:21 +00:00
|
|
|
|
|
|
|
# ifndef OPENSSL_RAND_SEED_OS
|
|
|
|
# error "Unsupported seeding method configured; must be os"
|
|
|
|
# endif
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
# include <windows.h>
|
2016-05-29 18:38:37 +00:00
|
|
|
/* On Windows 7 or higher use BCrypt instead of the legacy CryptoAPI */
|
2017-07-18 13:39:21 +00:00
|
|
|
# if defined(_MSC_VER) && defined(_WIN32_WINNT) && _WIN32_WINNT >= 0x0601
|
|
|
|
# define USE_BCRYPTGENRANDOM
|
2016-05-29 18:38:37 +00:00
|
|
|
# endif
|
|
|
|
|
2017-07-18 13:39:21 +00:00
|
|
|
# ifdef USE_BCRYPTGENRANDOM
|
2016-05-29 18:23:22 +00:00
|
|
|
# include <bcrypt.h>
|
|
|
|
# pragma comment(lib, "bcrypt.lib")
|
2016-06-02 21:38:56 +00:00
|
|
|
# ifndef STATUS_SUCCESS
|
|
|
|
# define STATUS_SUCCESS ((NTSTATUS)0x00000000L)
|
|
|
|
# endif
|
2016-05-29 18:23:22 +00:00
|
|
|
# else
|
|
|
|
# include <wincrypt.h>
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* Intel hardware RNG CSP -- available from
|
2000-07-19 21:35:35 +00:00
|
|
|
* http://developer.intel.com/design/security/rng/redist_license.htm
|
|
|
|
*/
|
2016-05-29 18:23:22 +00:00
|
|
|
# define PROV_INTEL_SEC 22
|
|
|
|
# define INTEL_DEF_PROV L"Intel Hardware Cryptographic Service Provider"
|
|
|
|
# endif
|
2000-07-19 21:35:35 +00:00
|
|
|
|
2017-08-25 20:39:33 +00:00
|
|
|
int RAND_poll_ex(RAND_poll_cb rand_add, void *arg)
|
2000-07-19 21:35:35 +00:00
|
|
|
{
|
2017-07-18 13:39:21 +00:00
|
|
|
# ifndef USE_BCRYPTGENRANDOM
|
2016-05-29 18:44:27 +00:00
|
|
|
HCRYPTPROV hProvider;
|
2017-08-07 23:21:36 +00:00
|
|
|
int ok = 0;
|
2016-05-29 18:23:22 +00:00
|
|
|
# endif
|
2017-07-18 13:39:21 +00:00
|
|
|
BYTE buf[RANDOMNESS_NEEDED];
|
2015-01-22 03:40:55 +00:00
|
|
|
|
2017-07-18 13:39:21 +00:00
|
|
|
# ifdef OPENSSL_RAND_SEED_RDTSC
|
2017-08-03 13:23:28 +00:00
|
|
|
rand_read_tsc(cb, arg);
|
2017-07-18 13:39:21 +00:00
|
|
|
# endif
|
|
|
|
# ifdef OPENSSL_RAND_SEED_RDCPU
|
2017-08-03 13:23:28 +00:00
|
|
|
if (rand_read_cpu(cb, arg))
|
2017-08-07 23:21:36 +00:00
|
|
|
return 1;
|
2017-07-18 13:39:21 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef USE_BCRYPTGENRANDOM
|
|
|
|
if (BCryptGenRandom(NULL, buf, (ULONG)sizeof(buf),
|
2017-08-07 23:21:36 +00:00
|
|
|
BCRYPT_USE_SYSTEM_PREFERRED_RNG) == STATUS_SUCCESS) {
|
2017-08-25 20:39:33 +00:00
|
|
|
rand_add(arg, buf, sizeof(buf), sizeof(buf));
|
2017-08-07 23:21:36 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2016-05-29 18:23:22 +00:00
|
|
|
# else
|
2015-12-12 01:53:03 +00:00
|
|
|
/* poll the CryptoAPI PRNG */
|
2017-07-18 13:39:21 +00:00
|
|
|
if (CryptAcquireContextW(&hProvider, NULL, NULL, PROV_RSA_FULL,
|
|
|
|
CRYPT_VERIFYCONTEXT | CRYPT_SILENT) != 0) {
|
2016-05-29 18:44:27 +00:00
|
|
|
if (CryptGenRandom(hProvider, (DWORD)sizeof(buf), buf) != 0) {
|
2017-08-25 20:39:33 +00:00
|
|
|
rand_add(arg, buf, sizeof(buf), sizeof(buf));
|
2017-08-07 23:21:36 +00:00
|
|
|
ok = 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-12-12 01:53:03 +00:00
|
|
|
CryptReleaseContext(hProvider, 0);
|
2017-08-07 23:21:36 +00:00
|
|
|
if (ok)
|
|
|
|
return 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
|
2015-12-12 01:53:03 +00:00
|
|
|
/* poll the Pentium PRG with CryptoAPI */
|
2017-07-18 13:39:21 +00:00
|
|
|
if (CryptAcquireContextW(&hProvider, NULL, INTEL_DEF_PROV, PROV_INTEL_SEC,
|
|
|
|
CRYPT_VERIFYCONTEXT | CRYPT_SILENT) != 0) {
|
2016-05-29 18:44:27 +00:00
|
|
|
if (CryptGenRandom(hProvider, (DWORD)sizeof(buf), buf) != 0) {
|
2017-08-25 20:39:33 +00:00
|
|
|
rand_add(arg, buf, sizeof(buf), sizeof(buf));
|
2017-08-07 23:21:36 +00:00
|
|
|
ok = 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-12-12 01:53:03 +00:00
|
|
|
CryptReleaseContext(hProvider, 0);
|
2017-08-07 23:21:36 +00:00
|
|
|
if (ok)
|
|
|
|
return 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2016-05-29 18:23:22 +00:00
|
|
|
# endif
|
2015-01-22 03:40:55 +00:00
|
|
|
|
2017-08-07 23:21:36 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2000-05-31 12:48:35 +00:00
|
|
|
|
2017-08-07 23:21:36 +00:00
|
|
|
# if OPENSSL_API_COMPAT < 0x10100000L
|
2016-05-16 19:30:41 +00:00
|
|
|
int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
RAND_poll();
|
|
|
|
return RAND_status();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RAND_screen(void)
|
|
|
|
{
|
|
|
|
RAND_poll();
|
|
|
|
}
|
2017-08-07 23:21:36 +00:00
|
|
|
# endif
|
2016-05-16 19:30:41 +00:00
|
|
|
|
2000-05-31 12:48:35 +00:00
|
|
|
#endif
|