Closed benjaminrsherman closed 2 years ago
If there's a value which is publicly known by all parties (e.g. a loop counter), is it possible to convert this into a Share without using Party::In() to provide the value as input from a specific party?
Party::In()
It is possible for arithmetic constants via Party::In<...kArithmeticConstant>(...). No boolean constants yet unfortunately.
Party::In<...kArithmeticConstant>(...)
If there's a value which is publicly known by all parties (e.g. a loop counter), is it possible to convert this into a Share without using
Party::In()
to provide the value as input from a specific party?