diff --git a/src/protocol/CryptionHandler.cpp b/src/protocol/CryptionHandler.cpp index 4e37bf3..06b3510 100644 --- a/src/protocol/CryptionHandler.cpp +++ b/src/protocol/CryptionHandler.cpp @@ -133,7 +133,7 @@ bool CryptionHandler::setupSharedSecretNew(const std::string &alpha, const std:: uint8_t shared[32]; uint8_t shared_iv[64]; - ed25519_key_exchange(shared, (uint8_t*) publicKey, (uint8_t*) privateKey); + //ed25519_key_exchange(shared, (uint8_t*) publicKey, (uint8_t*) privateKey); keyMul(shared, reinterpret_cast(publicKey), reinterpret_cast(privateKey), true); //Remote key get negated digest::sha512((char*) shared, 32, shared_iv);