Hello,
I am experimenting with serializing partial ciphertexts in BGV.
auto ciphertextPartial1 = cc->MultipartyDecryptLead({ciphertextAdd123}, kp1.secretKey);
Serial::SerializeToFile(DATAFOLDER + "/" + "ciphertextPartial1.txt", cc->Compress(ciphertextPartial1[0]), SerType::BINARY)
However, the deserialized, compressed partial ciphertext does not produce valid results during decryption. Is Compress not supported for partial ciphertexts or am I missing something?