| 461 | } |
| 462 | |
| 463 | void PRFRegister::input(party_id_t from, char value) |
| 464 | { |
| 465 | (void)from; |
| 466 | (void)value; |
| 467 | ProgramParty& party = *ProgramParty::singleton; |
| 468 | party.receive_keys(*this); |
| 469 | party.store_wire(*this); |
| 470 | #ifdef DEBUG |
| 471 | cout << "(PRF) input from " << from << ":" << endl; |
| 472 | keys.print(get_id()); |
| 473 | #endif |
| 474 | } |
| 475 | |
| 476 | void PRFRegister::public_input(bool value) |
| 477 | { |
no test coverage detected