From ae6a048de957054802268cb9e3e08e3dd81b7c5d Mon Sep 17 00:00:00 2001 From: Ashish Bhanu Daulatabad Date: Sun, 11 Apr 2021 00:13:13 +0530 Subject: [PATCH] Comment modification --- ciphers/elliptic_curve_key_exchange.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ciphers/elliptic_curve_key_exchange.cpp b/ciphers/elliptic_curve_key_exchange.cpp index a13450dbe..a4282a024 100644 --- a/ciphers/elliptic_curve_key_exchange.cpp +++ b/ciphers/elliptic_curve_key_exchange.cpp @@ -286,6 +286,7 @@ static void test() { std::cout << alice_shared_key << std::endl; std::cout << bob_shared_key << std::endl; + // Check whether shared keys are equal assert(alice_shared_key == bob_shared_key); }