2

Do PHE schemes in general also suffer from noise overflow problem?

fallere456
  • 335
  • 2
  • 8

1 Answers1

2

If by PHE you mean systems such as Paillier, then the answer is no. They don't have noise as in FHE and SWHE.

Changyu Dong
  • 4,168
  • 14
  • 15
  • May i ask why is that PHE schemes do not suffer from noise overflow? – fallere456 Aug 20 '19 at 10:49
  • 3
    Very imprecisely, in FHE, the noise and the plaintext are in the same space. When evaluating a function $f$ homomorphically, you are actually computing $ f(plaintext + noise)$. The noise can be eliminated from the result only if it does not exceed a certain modulus, e.g. see here https://crypto.stackexchange.com/questions/35150/noise-in-homomorphic-encryption.

    In PHE, the problem does not exist. The plaintext is always being evaluated in its own space. Although PHE also uses random numbers in encryption, the random numbers don't interfere with the plaintext in the homomorphic computation.

    – Changyu Dong Aug 20 '19 at 12:38
  • 1
    The above comment could be added to the answer.. – fgrieu Aug 20 '19 at 15:08