Python 3, semi-honest computation using semi-homomorphic encryption.

This commit is contained in:
Marcel Keller
2019-11-21 17:23:51 +11:00
parent 3bf45ebbaf
commit 470b075803
138 changed files with 1932 additions and 1022 deletions

View File

@@ -59,7 +59,7 @@ void ThreadMaster<T>::run()
if (T::needs_ot)
for (int i = 0; i < machine.nthreads; i++)
machine.ot_setups.push_back({{*P, true}, {*P, true}});
machine.ot_setups.push_back({*P, true});
for (int i = 0; i < machine.nthreads; i++)
threads.push_back(new_thread(i));