mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 21:18:03 -05:00
12 lines
115 B
C++
12 lines
115 B
C++
/*
|
|
* galois-degree.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Math/gf2n.h"
|
|
|
|
int main()
|
|
{
|
|
cout << gf2n::default_degree() << endl;
|
|
}
|