fixed: crypto++ compile errors, linux compiler syntax bugs, and code style (spaces -> tabs)
This commit is contained in:
parent
650da22c33
commit
c0dcdd52e7
|
@ -57,7 +57,7 @@ public:
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#ifdef TEST_ENV
|
#ifdef TEST_ENV
|
||||||
void handleDataForTest() { handleData(NULL, NULL); }
|
void handleDataForTest() { handleData(CEvent(), NULL); }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "CCryptoMode.h"
|
#include "CCryptoMode.h"
|
||||||
|
#include "XSynergy.h"
|
||||||
|
|
||||||
using namespace CryptoPP;
|
using namespace CryptoPP;
|
||||||
|
|
||||||
|
@ -46,7 +47,7 @@ CCryptoMode::CCryptoMode(ECryptoMode mode, bool encryption) :
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw std::exception("crypto mode not set");
|
throw XBadCryptoMode();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -71,7 +72,7 @@ CCryptoMode::CCryptoMode(ECryptoMode mode, bool encryption) :
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw std::exception("crypto mode not set");
|
throw XBadCryptoMode();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@ private:
|
||||||
typedef CryptoPP::CTR_Mode<CryptoPP::AES>::Decryption CCtrModeDec;
|
typedef CryptoPP::CTR_Mode<CryptoPP::AES>::Decryption CCtrModeDec;
|
||||||
typedef CryptoPP::GCM<CryptoPP::AES>::Decryption CGcmModeDec;
|
typedef CryptoPP::GCM<CryptoPP::AES>::Decryption CGcmModeDec;
|
||||||
|
|
||||||
static CCryptoMode::ECryptoMode parseMode(CString& mode);
|
static ECryptoMode parseMode(CString& mode);
|
||||||
|
|
||||||
ECryptoMode m_mode;
|
ECryptoMode m_mode;
|
||||||
void* m_crypto;
|
void* m_crypto;
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "CCryptoOptions.h"
|
#include "CCryptoOptions.h"
|
||||||
|
#include "XSynergy.h"
|
||||||
|
|
||||||
CCryptoOptions::CCryptoOptions(
|
CCryptoOptions::CCryptoOptions(
|
||||||
const CString& modeString,
|
const CString& modeString,
|
||||||
|
@ -48,6 +49,6 @@ CCryptoOptions::parseMode(CString modeString)
|
||||||
return kGcm;
|
return kGcm;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
throw std::exception("invalid crypto mode");
|
throw XBadCryptoMode();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,9 +17,10 @@
|
||||||
|
|
||||||
#include "CCryptoStream.h"
|
#include "CCryptoStream.h"
|
||||||
#include "CLog.h"
|
#include "CLog.h"
|
||||||
|
#include "CCryptoOptions.h"
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include "CCryptoOptions.h"
|
#include <stdio.h>
|
||||||
|
|
||||||
using namespace CryptoPP;
|
using namespace CryptoPP;
|
||||||
using namespace synergy::crypto;
|
using namespace synergy::crypto;
|
||||||
|
|
|
@ -20,9 +20,10 @@
|
||||||
#include "BasicTypes.h"
|
#include "BasicTypes.h"
|
||||||
#include "CStreamFilter.h"
|
#include "CStreamFilter.h"
|
||||||
#include "CCryptoMode.h"
|
#include "CCryptoMode.h"
|
||||||
#include "CCryptoOptions.h"
|
|
||||||
#include <cryptopp562/osrng.h>
|
#include <cryptopp562/osrng.h>
|
||||||
#include "cryptopp562/sha.h"
|
#include <cryptopp562/sha.h>
|
||||||
|
|
||||||
|
class CCryptoOptions;
|
||||||
|
|
||||||
#define CRYPTO_IV_SIZE CryptoPP::AES::BLOCKSIZE
|
#define CRYPTO_IV_SIZE CryptoPP::AES::BLOCKSIZE
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,15 @@ XBadClient::getWhat() const throw()
|
||||||
return "XBadClient";
|
return "XBadClient";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// XBadCryptoMode
|
||||||
|
//
|
||||||
|
CString
|
||||||
|
XBadCryptoMode::getWhat() const throw()
|
||||||
|
{
|
||||||
|
return "XBadCryptoMode";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// XIncompatibleClient
|
// XIncompatibleClient
|
||||||
|
|
|
@ -30,6 +30,12 @@ Thrown when the client fails to follow the protocol.
|
||||||
*/
|
*/
|
||||||
XBASE_SUBCLASS_WHAT(XBadClient, XSynergy);
|
XBASE_SUBCLASS_WHAT(XBadClient, XSynergy);
|
||||||
|
|
||||||
|
//! Bad crypto mode
|
||||||
|
/*!
|
||||||
|
Thrown when the user enters an invalid crypto mode.
|
||||||
|
*/
|
||||||
|
XBASE_SUBCLASS_WHAT(XBadCryptoMode, XSynergy);
|
||||||
|
|
||||||
//! Incompatible client exception
|
//! Incompatible client exception
|
||||||
/*!
|
/*!
|
||||||
Thrown when a client attempting to connect has an incompatible version.
|
Thrown when a client attempting to connect has an incompatible version.
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
#include "CMockStream.h"
|
#include "CMockStream.h"
|
||||||
#include "CMockEventQueue.h"
|
#include "CMockEventQueue.h"
|
||||||
#include "CPacketStreamFilter.h"
|
#include "CPacketStreamFilter.h"
|
||||||
|
#include "CCryptoOptions.h"
|
||||||
|
|
||||||
using ::testing::_;
|
using ::testing::_;
|
||||||
using ::testing::Invoke;
|
using ::testing::Invoke;
|
||||||
|
|
|
@ -31,8 +31,8 @@ file(GLOB cpp_ignore
|
||||||
${cpp_dir}/algebra.cpp)
|
${cpp_dir}/algebra.cpp)
|
||||||
list(REMOVE_ITEM cpp_src ${cpp_ignore})
|
list(REMOVE_ITEM cpp_src ${cpp_ignore})
|
||||||
|
|
||||||
# 64-bit windows - compile asm file.
|
# if 64-bit windows, compile asm file.
|
||||||
if(CMAKE_CL_64)
|
if (CMAKE_CL_64)
|
||||||
list(APPEND cpp_src ${cpp_dir}/x64dll.asm ${cpp_dir}/x64masm.asm)
|
list(APPEND cpp_src ${cpp_dir}/x64dll.asm ${cpp_dir}/x64masm.asm)
|
||||||
|
|
||||||
add_custom_command(OUTPUT $(IntDir)x64dll.obj
|
add_custom_command(OUTPUT $(IntDir)x64dll.obj
|
||||||
|
@ -46,6 +46,8 @@ if(CMAKE_CL_64)
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/${cpp_dir}/x64masm.asm"
|
"${CMAKE_CURRENT_SOURCE_DIR}/${cpp_dir}/x64masm.asm"
|
||||||
MAIN_DEPENDENCY ${cpp_dir}/x64masm.asm
|
MAIN_DEPENDENCY ${cpp_dir}/x64masm.asm
|
||||||
VERBATIM)
|
VERBATIM)
|
||||||
|
else()
|
||||||
|
add_definitions(-DCRYPTOPP_DISABLE_ASM)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
|
|
Loading…
Reference in New Issue