From 86f0fde6e7914f055c5872bf7f2f565cc09977fc Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Tue, 12 Feb 2019 18:49:12 +0100 Subject: Windows: Use Hardware RNG based on CPU timing jitter "Jitterentropy" by Stephan Mueller as a good alternative to RDRAND (http://www.chronox.de/jent.html, smueller@chronox.de) --- src/Crypto/GostCipher.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/Crypto/GostCipher.h') diff --git a/src/Crypto/GostCipher.h b/src/Crypto/GostCipher.h index 6031c438..bcb77207 100644 --- a/src/Crypto/GostCipher.h +++ b/src/Crypto/GostCipher.h @@ -14,6 +14,7 @@ #include "Common/Tcdefs.h" #include "config.h" +#include "misc.h" #ifdef __cplusplus extern "C" { @@ -30,10 +31,6 @@ extern "C" { #if defined(CIPHER_GOST89) -#ifndef rotl32 -#define rotl32(b, shift) ((b << shift) | (b >> (32 - shift))) -#endif - #ifdef GST_WINDOWS_BOOT typedef int gst_word; typedef long gst_dword; -- cgit v1.2.3