Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Geng <terry@terriex.com>2020-06-03 13:54:38 +0300
committerTerry Geng <terry@terriex.com>2020-06-06 15:37:59 +0300
commite90eb8c4cd7edc0cd3eddafac622edc45efff794 (patch)
treedd737a6399ef4702de73b82e831307be1ec79836 /3rdparty
parent5f421e64f7644be2598c15c75d5767e931b3c8a3 (diff)
src: Made CryptState an abstract class, in order to support multiple crypto types in the future. Moved all crypto-related files into src/crypto.
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/arc4random-src/arc4random_uniform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/arc4random-src/arc4random_uniform.cpp b/3rdparty/arc4random-src/arc4random_uniform.cpp
index cb7307668..4ac1b6724 100644
--- a/3rdparty/arc4random-src/arc4random_uniform.cpp
+++ b/3rdparty/arc4random-src/arc4random_uniform.cpp
@@ -32,7 +32,7 @@
// - Disable MSVC warning 4146.
#include <stdint.h>
-#include "CryptographicRandom.h"
+#include "crypto/CryptographicRandom.h"
#if defined(_MSC_VER)
// Disable "unary minus operator applied to unsigned type, result still unsigned"