I have been looking through OpenFHE library and trying to use BinFHE. I want to evaluate two functions, 1) addition and 2) multiplication using FHEW.
When I try to use the functions shown in Program Listing for File lwe-pke.h — OpenFHE documentation for this operations, I run into and error that says the functions does not exist
‘> class lbcrypto::BinFHEContext’ has no member named ‘EvalAddConstEq’
96 | auto ctSum = ccLWE.EvalAddConstEq(ctxtsLWE1, ctxtsLWE2);
Is there any way to implement this type of arithmetic operations in BinFHE??
N:B, I am not concerned about the cost of evaluation. I just want correct evaluation.