Skip to content

Commit

Permalink
found the key file to edit
Browse files Browse the repository at this point in the history
  • Loading branch information
hpdic committed Dec 15, 2024
1 parent f141177 commit b2b604f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pke/examples/hpdic_nemesis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit b2b604f

Please sign in to comment.