(g: Graph, node: Node, t: Type, prf_keys: Node, status: IOStatus)
| 757 | } |
| 758 | |
| 759 | fn share_input(g: Graph, node: Node, t: Type, prf_keys: Node, status: IOStatus) -> Result<Node> { |
| 760 | let plain_input = g.input(t)?; |
| 761 | copy_node_name(node, plain_input.clone())?; |
| 762 | share_node(g, plain_input, prf_keys, status) |
| 763 | } |
| 764 | |
| 765 | /// Generates a triple of random PRF keys (k_0, k_1, k_2) such that k_i is generated by party i. |
| 766 | /// The keys are then distributed such that |
no test coverage detected