You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By also having a reference to the corresponding encryption key in ciphertexts we can making homomorphic operations easier to read, ie c1 + c2 and c * 5 instead of Paillier::add(ek, c1, c2) and Paillier:mul(c, 5).
Implementation wise this could be done by simply redirecting to the existing Paillier method and implementing Add and Mul for ciphertexts.
The text was updated successfully, but these errors were encountered:
By also having a reference to the corresponding encryption key in ciphertexts we can making homomorphic operations easier to read, ie
c1 + c2
andc * 5
instead ofPaillier::add(ek, c1, c2)
andPaillier:mul(c, 5)
.Implementation wise this could be done by simply redirecting to the existing
Paillier
method and implementingAdd
andMul
for ciphertexts.The text was updated successfully, but these errors were encountered: