We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70fb30c commit b47c9bbCopy full SHA for b47c9bb
Processor/OfflineMachine.hpp
@@ -43,7 +43,10 @@ template<class W>
43
template<class T, class U>
44
int OfflineMachine<W>::run()
45
{
46
- T::clear::init_default(this->online_opts.prime_length());
+ if (this->online_opts.prime)
47
+ T::clear::init_field(this->online_opts.prime);
48
+ else
49
+ T::clear::init_default(this->online_opts.prime_length());
50
Machine<T, U>::init_binary_domains(this->online_opts.security_parameter,
51
this->get_lg2());
52
auto binary_mac_key = read_generate_write_mac_key<
0 commit comments