Hello!
Can someone tell me when to use one or the other? Or if one is no longer used and in this case why?
The difference types I mean by this:
auto c1 = cc->Encrypt(keys.publicKey, ptxt1);
auto c2 = cc->Encrypt(keys.secretKey, ptxt1);
I think that the first one it have a polynomial V that multiply the public key and the addition of polynomial errors and then the addition of the encoding (like the paper of reduce error), and in the other one is simple the addition of the public key with the encoding (like the original paper).