You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This explanation looks off - what does it mean to leak an information theoretic bit? Fix this issue with a more informative comment explaining the function of the fixed point operations
This implementation of the library is not completely hiding. This leaks information about the bits used in computation which is determinied by the security parameter Kappa.
The text was updated successfully, but these errors were encountered:
This library provides basic arithmetic functionalities which are needed when the underlying types are real values. To enable that, it uses fixed point representation of real numbers. Note that the implementation of fixed point operations in this library is only statistically (and not perfectly) hiding. This means that whenever a fixed point operation from this library is invoked, the resulting output is only statistically (and not perfectly) indistinguishable from a uniformly random output, and the statistical distance is O(1/(2^Kappa)). In simple terms, increasing the Kappa parameter would make the output look more close to uniform random but also incur higher computational/communication cost.
It is not correct to say these are real values, since only a subset of real values can be represented. It would be closer to accurate to say rational rather than real, although only some rationals can be represented as well
Which operation leaks information, could you point more specifically to where / how this can occur?
Which operations are perfectly hiding and which are statistical?
This explanation looks off - what does it mean to leak an information theoretic bit? Fix this issue with a more informative comment explaining the function of the fixed point operations
HoneyBadgerMPC/honeybadgermpc/progs/fixedpoint.py
Line 26 in 46dd3d4
The text was updated successfully, but these errors were encountered: