mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
191 lines
3.6 KiB
C++
191 lines
3.6 KiB
C++
|
|
#include "Math/gfp.h"
|
|
#include "Math/Setup.h"
|
|
|
|
#include "Exceptions/Exceptions.h"
|
|
|
|
template <int X>
|
|
void gfp_<X>::init_default(int lgp, bool mont)
|
|
{
|
|
init_field(SPDZ_Data_Setup_Primes(lgp), mont);
|
|
}
|
|
|
|
template <int X>
|
|
void gfp_<X>::almost_randomize(PRNG& G)
|
|
{
|
|
G.get_octets((octet*)a.x,t()*sizeof(mp_limb_t));
|
|
a.x[t()-1]&=ZpD.mask;
|
|
}
|
|
|
|
template <int X>
|
|
void gfp_<X>::AND(const gfp_& x,const gfp_& y)
|
|
{
|
|
bigint bi1,bi2;
|
|
to_bigint(bi1,x);
|
|
to_bigint(bi2,y);
|
|
mpz_and(bi1.get_mpz_t(), bi1.get_mpz_t(), bi2.get_mpz_t());
|
|
convert_destroy(bi1);
|
|
}
|
|
|
|
template <int X>
|
|
void gfp_<X>::OR(const gfp_& x,const gfp_& y)
|
|
{
|
|
bigint bi1,bi2;
|
|
to_bigint(bi1,x);
|
|
to_bigint(bi2,y);
|
|
mpz_ior(bi1.get_mpz_t(), bi1.get_mpz_t(), bi2.get_mpz_t());
|
|
convert_destroy(bi1);
|
|
}
|
|
|
|
template <int X>
|
|
void gfp_<X>::XOR(const gfp_& x,const gfp_& y)
|
|
{
|
|
bigint bi1,bi2;
|
|
to_bigint(bi1,x);
|
|
to_bigint(bi2,y);
|
|
mpz_xor(bi1.get_mpz_t(), bi1.get_mpz_t(), bi2.get_mpz_t());
|
|
convert_destroy(bi1);
|
|
}
|
|
|
|
template <int X>
|
|
void gfp_<X>::AND(const gfp_& x,const bigint& y)
|
|
{
|
|
bigint bi;
|
|
to_bigint(bi,x);
|
|
mpz_and(bi.get_mpz_t(), bi.get_mpz_t(), y.get_mpz_t());
|
|
convert_destroy(bi);
|
|
}
|
|
|
|
template <int X>
|
|
void gfp_<X>::OR(const gfp_& x,const bigint& y)
|
|
{
|
|
bigint bi;
|
|
to_bigint(bi,x);
|
|
mpz_ior(bi.get_mpz_t(), bi.get_mpz_t(), y.get_mpz_t());
|
|
convert_destroy(bi);
|
|
}
|
|
|
|
template <int X>
|
|
void gfp_<X>::XOR(const gfp_& x,const bigint& y)
|
|
{
|
|
bigint bi;
|
|
to_bigint(bi,x);
|
|
mpz_xor(bi.get_mpz_t(), bi.get_mpz_t(), y.get_mpz_t());
|
|
convert_destroy(bi);
|
|
}
|
|
|
|
|
|
|
|
|
|
template <int X>
|
|
void gfp_<X>::SHL(const gfp_& x,int n)
|
|
{
|
|
if (!x.is_zero())
|
|
{
|
|
if (n != 0)
|
|
{
|
|
bigint& bi = bigint::tmp;
|
|
to_bigint(bi,x,false);
|
|
bi <<= n;
|
|
convert_destroy(bi);
|
|
}
|
|
else
|
|
assign(x);
|
|
}
|
|
else
|
|
{
|
|
assign_zero();
|
|
}
|
|
}
|
|
|
|
|
|
template <int X>
|
|
void gfp_<X>::SHR(const gfp_& x,int n)
|
|
{
|
|
if (!x.is_zero())
|
|
{
|
|
if (n != 0)
|
|
{
|
|
bigint& bi = bigint::tmp;
|
|
to_bigint(bi,x);
|
|
bi >>= n;
|
|
convert_destroy(bi);
|
|
}
|
|
else
|
|
assign(x);
|
|
}
|
|
else
|
|
{
|
|
assign_zero();
|
|
}
|
|
}
|
|
|
|
|
|
template <int X>
|
|
void gfp_<X>::SHL(const gfp_& x,const bigint& n)
|
|
{
|
|
SHL(x,mpz_get_si(n.get_mpz_t()));
|
|
}
|
|
|
|
|
|
template <int X>
|
|
void gfp_<X>::SHR(const gfp_& x,const bigint& n)
|
|
{
|
|
SHR(x,mpz_get_si(n.get_mpz_t()));
|
|
}
|
|
|
|
|
|
template<int X>
|
|
gfp_<X> gfp_<X>::sqrRoot()
|
|
{
|
|
// Temp move to bigint so as to call sqrRootMod
|
|
bigint ti;
|
|
to_bigint(ti, *this);
|
|
ti = sqrRootMod(ti, ZpD.pr);
|
|
if (!isOdd(ti))
|
|
ti = ZpD.pr - ti;
|
|
gfp_<X> temp;
|
|
to_gfp(temp, ti);
|
|
return temp;
|
|
}
|
|
|
|
template <int X>
|
|
void gfp_<X>::reqbl(int n)
|
|
{
|
|
if ((int)n > 0 && gfp::pr() < bigint(1) << (n-1))
|
|
{
|
|
cout << "Tape requires prime of bit length " << n << endl;
|
|
throw invalid_params();
|
|
}
|
|
else if ((int)n < 0)
|
|
{
|
|
throw Processor_Error("Program compiled for rings not fields");
|
|
}
|
|
}
|
|
|
|
template<int X>
|
|
bool gfp_<X>::allows(Dtype type)
|
|
{
|
|
switch(type)
|
|
{
|
|
case DATA_BITGF2NTRIPLE:
|
|
case DATA_BITTRIPLE:
|
|
return false;
|
|
default:
|
|
return true;
|
|
}
|
|
}
|
|
|
|
void to_signed_bigint(bigint& ans, const gfp& x)
|
|
{
|
|
to_bigint(ans, x);
|
|
// get sign and abs(x)
|
|
bigint& p_half = bigint::tmp = (gfp::pr()-1)/2;
|
|
if (mpz_cmp(ans.get_mpz_t(), p_half.get_mpz_t()) > 0)
|
|
ans -= gfp::pr();
|
|
}
|
|
|
|
template class gfp_<0>;
|
|
template class gfp_<1>;
|
|
template class gfp_<2>;
|