Merge pull request #6581 from Doxense/enable-windows-encryption
Enable encryption for Windows
This commit is contained in:
commit
dc5b129d10
|
@ -36,7 +36,7 @@ set(FDBRPC_SRCS
|
|||
TraceFileIO.cpp
|
||||
TSSComparison.h)
|
||||
|
||||
if(WITH_TLS AND NOT WIN32)
|
||||
if(WITH_TLS)
|
||||
set(FDBRPC_SRCS
|
||||
${FDBRPC_SRCS}
|
||||
AsyncFileEncrypted.actor.cpp)
|
||||
|
|
|
@ -100,7 +100,7 @@ set(FLOW_SRCS
|
|||
xxhash.c
|
||||
xxhash.h)
|
||||
|
||||
if(WITH_TLS AND NOT WIN32)
|
||||
if(WITH_TLS)
|
||||
set(FLOW_SRCS
|
||||
${FLOW_SRCS}
|
||||
StreamCipher.cpp)
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#if (!defined(TLS_DISABLED) && !defined(_WIN32))
|
||||
#if (!defined(TLS_DISABLED))
|
||||
#define ENCRYPTION_ENABLED 1
|
||||
#else
|
||||
#define ENCRYPTION_ENABLED 0
|
||||
|
|
Loading…
Reference in New Issue