I want to create an array of packed ciphertexts using the BFV homomorphic encryption scheme in Microsft SEAL, C++.
If I have 8192 slots in one packed BFV ciphertext, I want to create an array of 10 such ciphertexts to perform various operations on them. I am not very good with assigning memory and using pointers which would probably be part of the solution but I am not sure. Could anyone please help me with this? Thank you so much!
I tried using pointers but since "Ciphertext" is a unique datatype to Microsoft SEAL I came across a few errors which probably means I didnt do it right.