From b2b604ff1c1de24fc0d08726227261fd4044c3fd Mon Sep 17 00:00:00 2001 From: Dongfang Zhao Date: Sun, 15 Dec 2024 03:37:18 +0000 Subject: [PATCH] found the key file to edit --- src/pke/examples/hpdic_nemesis.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pke/examples/hpdic_nemesis.cpp b/src/pke/examples/hpdic_nemesis.cpp index 02a9fd6c..78a1f7d1 100644 --- a/src/pke/examples/hpdic_nemesis.cpp +++ b/src/pke/examples/hpdic_nemesis.cpp @@ -207,7 +207,8 @@ int main() { auto prod_c1_and_p1_pack = cryptoContext->EvalMult(ciphertext1, p1_pack); Plaintext p1_sqr; cryptoContext->Decrypt(keyPair.secretKey, prod_c1_and_p1_pack, &p1_sqr); - std::cout << "#1 * #1" << p1_sqr << std::endl; + std::cout << "#1 * #1 = " << p1_sqr << std::endl; + std::cout << "To be continued: openfhe-development/src/pke/lib/scheme/bfvrns/bfvrns-leveledshe.cpp" << std::endl; return 0; }