コード例 #1
0
ファイル: baseOT.cpp プロジェクト: muelli/OTExtension
void BaseOT::printepoint(epoint *point)
{
	Big x, y;
	epoint_getxyz(point,x.getbig(),y.getbig(),NULL);
	cerr << "(" << x << ", " << y << ")" << endl;
}
コード例 #2
0
void printepoint(epoint point)
{
	Big x, y;
	epoint_getxyz(&point,x.getbig(),y.getbig(),NULL);
	cout << "(" << x << ", " << y << ")" << endl;
}
コード例 #3
0
ファイル: ecn.cpp プロジェクト: JacobBarthelmeh/supercop
void ECn::getxy(Big &x,Big &y) const
        {epoint_getxyz(p,x.getbig(),y.getbig(),NULL);}
コード例 #4
0
ファイル: ecn.cpp プロジェクト: JacobBarthelmeh/supercop
void ECn::getxyz(Big &x,Big &y, Big &z) const
        {epoint_getxyz(p,x.getbig(),y.getbig(),z.getbig());}
コード例 #5
0
ファイル: ecn.cpp プロジェクト: JacobBarthelmeh/supercop
void ECn::getx(Big &x) const
        {epoint_getxyz(p,x.getbig(),NULL,NULL);}