| 144 | } |
| 145 | |
| 146 | void BaseOT::exec_base(bool new_receiver_inputs) |
| 147 | { |
| 148 | #ifndef NO_AVX_OT |
| 149 | if (use_avx()) |
| 150 | exec_base<SIMPLEOT_SENDER, SIMPLEOT_RECEIVER>(new_receiver_inputs); |
| 151 | else |
| 152 | #endif |
| 153 | exec_base<ref10_SENDER, ref10_RECEIVER>(new_receiver_inputs); |
| 154 | } |
| 155 | |
| 156 | // See https://eprint.iacr.org/2015/267.pdf |
| 157 | template<class T, class U> |
no test coverage detected