Can you please let me know how to compare two ciphertexts using the SEAL library?
I have two ciphertexts, C1 and C2 that were encoded using fractional encoder and then encrypted.
Is there a way to compare C1 and C2 for equality ? (C1 == C2 that returns boolean).
I have checked the ciphertext.h file and I was unable to find comparison sub-routines.
Something tells me that I can compare two ciphertexts by encoding them using BinaryEncoder and comparing bit by bit.
How could I go about implementing that?