blob: 2da3cb5d939d0e32046c0bbd656fa395ddd75ed0 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
/* AMCL BLS Curve pairing functions */
//#define HAS_MAIN
#include "pair256_ZZZ.h"
using namespace XXX;
using namespace YYY;
namespace ZZZ {
static void PAIR_line(FP48 *,ECP8 *,ECP8 *,FP *,FP *);
static void glv(BIG u[2],BIG);
static void gs(BIG u[4],BIG);
}
/* Line function */
static void ZZZ::PAIR_line(FP48 *v,ECP8 *A,ECP8 *B,FP *Qx,FP *Qy)
{
FP8 X1,Y1,T1,T2;
FP8 XX,YY,ZZ,YZ;
FP16 a,b,c;
if (A==B)
{
/* doubling */
FP8_copy(&XX,&(A->x)); //FP8 XX=new FP8(A.getx()); //X
FP8_copy(&YY,&(A->y)); //FP8 YY=new FP8(A.gety()); //Y
FP8_copy(&ZZ,&(A->z)); //FP8 ZZ=new FP8(A.getz()); //Z
FP8_copy(&YZ,&YY); //FP8 YZ=new FP8(YY); //Y
FP8_mul(&YZ,&YZ,&ZZ); //YZ.mul(ZZ); //YZ
FP8_sqr(&XX,&XX); //XX.sqr(); //X^2
FP8_sqr(&YY,&YY); //YY.sqr(); //Y^2
FP8_sqr(&ZZ,&ZZ); //ZZ.sqr(); //Z^2
FP8_imul(&YZ,&YZ,4); //YZ.imul(4);
FP8_neg(&YZ,&YZ); //YZ.neg();
FP8_norm(&YZ); //YZ.norm(); //-4YZ
FP8_imul(&XX,&XX,6); //6X^2
FP8_tmul(&XX,&XX,Qx); //6X^2.Xs
FP8_imul(&ZZ,&ZZ,3*CURVE_B_I); //3Bz^2
FP8_tmul(&YZ,&YZ,Qy); //-4YZ.Ys
#if SEXTIC_TWIST_ZZZ==D_TYPE
FP8_div_2i(&ZZ); //6(b/i)z^2
#endif
#if SEXTIC_TWIST_ZZZ==M_TYPE
FP8_times_i(&ZZ);
FP8_add(&ZZ,&ZZ,&ZZ); // 6biz^2
FP8_times_i(&YZ);
FP8_norm(&YZ);
#endif
FP8_norm(&ZZ); // 6bi.Z^2
FP8_add(&YY,&YY,&YY); // 2y^2
FP8_sub(&ZZ,&ZZ,&YY); //
FP8_norm(&ZZ); // 6b.Z^2-2Y^2
FP16_from_FP8s(&a,&YZ,&ZZ); // -4YZ.Ys | 6b.Z^2-2Y^2 | 6X^2.Xs
#if SEXTIC_TWIST_ZZZ==D_TYPE
FP16_from_FP8(&b,&XX);
FP16_zero(&c);
#endif
#if SEXTIC_TWIST_ZZZ==M_TYPE
FP16_zero(&b);
FP16_from_FP8H(&c,&XX);
#endif
ECP8_dbl(A); //A.dbl();
}
else
{
/* addition */
FP8_copy(&X1,&(A->x)); //FP8 X1=new FP8(A.getx()); // X1
FP8_copy(&Y1,&(A->y)); //FP8 Y1=new FP8(A.gety()); // Y1
FP8_copy(&T1,&(A->z)); //FP8 T1=new FP8(A.getz()); // Z1
FP8_copy(&T2,&T1); //FP8 T2=new FP8(A.getz()); // Z1
FP8_mul(&T1,&T1,&(B->y)); //T1.mul(B.gety()); // T1=Z1.Y2
FP8_mul(&T2,&T2,&(B->x)); //T2.mul(B.getx()); // T2=Z1.X2
FP8_sub(&X1,&X1,&T2); //X1.sub(T2);
FP8_norm(&X1); //X1.norm(); // X1=X1-Z1.X2
FP8_sub(&Y1,&Y1,&T1); //Y1.sub(T1);
FP8_norm(&Y1); //Y1.norm(); // Y1=Y1-Z1.Y2
FP8_copy(&T1,&X1); //T1.copy(X1); // T1=X1-Z1.X2
FP8_tmul(&X1,&X1,Qy); //X1.pmul(Qy); // X1=(X1-Z1.X2).Ys
#if SEXTIC_TWIST_ZZZ==M_TYPE
FP8_times_i(&X1);
FP8_norm(&X1);
#endif
FP8_mul(&T1,&T1,&(B->y)); //T1.mul(B.gety()); // T1=(X1-Z1.X2).Y2
FP8_copy(&T2,&Y1); //T2.copy(Y1); // T2=Y1-Z1.Y2
FP8_mul(&T2,&T2,&(B->x)); //T2.mul(B.getx()); // T2=(Y1-Z1.Y2).X2
FP8_sub(&T2,&T2,&T1); //T2.sub(T1);
FP8_norm(&T2); //T2.norm(); // T2=(Y1-Z1.Y2).X2 - (X1-Z1.X2).Y2
FP8_tmul(&Y1,&Y1,Qx); //Y1.pmul(Qx);
FP8_neg(&Y1,&Y1); //Y1.neg();
FP8_norm(&Y1); //Y1.norm(); // Y1=-(Y1-Z1.Y2).Xs
FP16_from_FP8s(&a,&X1,&T2); // (X1-Z1.X2).Ys | (Y1-Z1.Y2).X2 - (X1-Z1.X2).Y2 | - (Y1-Z1.Y2).Xs
#if SEXTIC_TWIST_ZZZ==D_TYPE
FP16_from_FP8(&b,&Y1); //b=new FP4(Y1);
FP16_zero(&c);
#endif
#if SEXTIC_TWIST_ZZZ==M_TYPE
FP16_zero(&b);
FP16_from_FP8H(&c,&Y1); //b=new FP4(Y1);
#endif
ECP8_add(A,B); // A.add(B);
}
FP48_from_FP16s(v,&a,&b,&c);
v->type=FP_SPARSER;
}
/* prepare ate parameter, n=6u+2 (BN) or n=u (BLS), n3=3*n */
int ZZZ::PAIR_nbits(BIG n3,BIG n)
{
BIG x;
BIG_rcopy(x,CURVE_Bnx);
BIG_copy(n,x);
BIG_norm(n);
BIG_pmul(n3,n,3);
BIG_norm(n3);
return BIG_nbits(n3);
}
/*
For multi-pairing, product of n pairings
1. Declare FP24 array of length number of bits in Ate parameter
2. Initialise this array by calling PAIR_initmp()
3. Accumulate each pairing by calling PAIR_another() n times
4. Call PAIR_miller()
5. Call final exponentiation PAIR_fexp()
*/
/* prepare for multi-pairing */
void ZZZ::PAIR_initmp(FP48 r[])
{
int i;
for (i=ATE_BITS_ZZZ-1; i>=0; i--)
FP48_one(&r[i]);
return;
}
/* basic Miller loop */
void ZZZ::PAIR_miller(FP48 *res,FP48 r[])
{
int i;
FP48_one(res);
for (i=ATE_BITS_ZZZ-1; i>=1; i--)
{
FP48_sqr(res,res);
FP48_ssmul(res,&r[i]);
}
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(res,res);
#endif
FP48_ssmul(res,&r[0]);
return;
}
/* Accumulate another set of line functions for n-pairing */
void ZZZ::PAIR_another(FP48 r[],ECP8* PV,ECP* QV)
{
int i,j,nb,bt;
BIG x,n,n3;
FP48 lv,lv2;
ECP8 A,NP,P;
ECP Q;
FP Qx,Qy;
nb=PAIR_nbits(n3,n);
ECP8_copy(&P,PV);
ECP_copy(&Q,QV);
ECP8_affine(&P);
ECP_affine(&Q);
FP_copy(&Qx,&(Q.x));
FP_copy(&Qy,&(Q.y));
ECP8_copy(&A,&P);
ECP8_copy(&NP,&P); ECP8_neg(&NP);
for (i=nb-2; i>=1; i--)
{
PAIR_line(&lv,&A,&A,&Qx,&Qy);
bt=BIG_bit(n3,i)-BIG_bit(n,i); // bt=BIG_bit(n,i);
if (bt==1)
{
PAIR_line(&lv2,&A,&P,&Qx,&Qy);
FP48_smul(&lv,&lv2);
}
if (bt==-1)
{
PAIR_line(&lv2,&A,&NP,&Qx,&Qy);
FP48_smul(&lv,&lv2);
}
FP48_ssmul(&r[i],&lv);
}
}
/* Optimal R-ate pairing r=e(P,Q) */
void ZZZ::PAIR_ate(FP48 *r,ECP8 *P1,ECP *Q1)
{
BIG x,n,n3;
FP Qx,Qy;
int i,nb,bt;
ECP8 A,NP,P;
ECP Q;
FP48 lv,lv2;
nb=PAIR_nbits(n3,n);
ECP8_copy(&P,P1);
ECP_copy(&Q,Q1);
ECP8_affine(&P);
ECP_affine(&Q);
FP_copy(&Qx,&(Q.x));
FP_copy(&Qy,&(Q.y));
ECP8_copy(&A,&P);
ECP8_copy(&NP,&P); ECP8_neg(&NP);
FP48_one(r);
/* Main Miller Loop */
for (i=nb-2; i>=1; i--)
{
FP48_sqr(r,r);
PAIR_line(&lv,&A,&A,&Qx,&Qy);
bt= BIG_bit(n3,i)-BIG_bit(n,i); // BIG_bit(n,i);
if (bt==1)
{
PAIR_line(&lv2,&A,&P,&Qx,&Qy);
FP48_smul(&lv,&lv2);
}
if (bt==-1)
{
PAIR_line(&lv2,&A,&NP,&Qx,&Qy);
FP48_smul(&lv,&lv2);
}
FP48_ssmul(r,&lv);
}
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(r,r);
#endif
}
/* Optimal R-ate double pairing e(P,Q).e(R,S) */
void ZZZ::PAIR_double_ate(FP48 *r,ECP8 *P1,ECP *Q1,ECP8 *R1,ECP *S1)
{
BIG x,n,n3;
FP Qx,Qy,Sx,Sy;
int i,nb,bt;
ECP8 A,B,NP,NR,P,R;
ECP Q,S;
FP48 lv,lv2;
nb=PAIR_nbits(n3,n);
ECP8_copy(&P,P1);
ECP_copy(&Q,Q1);
ECP8_affine(&P);
ECP_affine(&Q);
ECP8_copy(&R,R1);
ECP_copy(&S,S1);
ECP8_affine(&R);
ECP_affine(&S);
FP_copy(&Qx,&(Q.x));
FP_copy(&Qy,&(Q.y));
FP_copy(&Sx,&(S.x));
FP_copy(&Sy,&(S.y));
ECP8_copy(&A,&P);
ECP8_copy(&B,&R);
ECP8_copy(&NP,&P); ECP8_neg(&NP);
ECP8_copy(&NR,&R); ECP8_neg(&NR);
FP48_one(r);
/* Main Miller Loop */
for (i=nb-2; i>=1; i--)
{
FP48_sqr(r,r);
PAIR_line(&lv,&A,&A,&Qx,&Qy);
PAIR_line(&lv2,&B,&B,&Sx,&Sy);
FP48_smul(&lv,&lv2);
FP48_ssmul(r,&lv);
bt=BIG_bit(n3,i)-BIG_bit(n,i); // bt=BIG_bit(n,i);
if (bt==1)
{
PAIR_line(&lv,&A,&P,&Qx,&Qy);
PAIR_line(&lv2,&B,&R,&Sx,&Sy);
FP48_smul(&lv,&lv2);
FP48_ssmul(r,&lv);
}
if (bt==-1)
{
PAIR_line(&lv,&A,&NP,&Qx,&Qy);
PAIR_line(&lv2,&B,&NR,&Sx,&Sy);
FP48_smul(&lv,&lv2);
FP48_ssmul(r,&lv);
}
}
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(r,r);
#endif
}
/* final exponentiation - keep separate for multi-pairings and to avoid thrashing stack */
void ZZZ::PAIR_fexp(FP48 *r)
{
FP2 X;
BIG x;
FP a,b;
FP48 t1,t2,t3,t7;
BIG_rcopy(x,CURVE_Bnx);
FP_rcopy(&a,Fra);
FP_rcopy(&b,Frb);
FP2_from_FPs(&X,&a,&b);
/* Easy part of final exp - r^(p^24-1)(p^8+1)*/
FP48_inv(&t7,r);
FP48_conj(r,r);
FP48_mul(r,&t7);
FP48_copy(&t7,r);
FP48_frob(r,&X,8);
FP48_mul(r,&t7);
if (FP48_isunity(r))
{
FP48_zero(r);
return;
}
// f^e0.f^e1^p.f^e2^p^2.. .. f^e14^p^14.f^e15^p^15
FP48_usqr(&t7,r); // t7=f^2
FP48_pow(&t1,&t7,x); // t1=f^2u
BIG_fshr(x,1);
FP48_pow(&t2,&t1,x); // t2=f^2u^(u/2) = f^u^2
BIG_fshl(x,1); // x must be even
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_conj(&t3,&t1); // t3=f^-2u
FP48_mul(&t2,&t3); // t2=f^u^2.f^-2u
FP48_mul(&t2,r); // t2=f^u^2.f^-2u.f = f^(u^2-2u+1) = f^e15
FP48_mul(r,&t7); // f^3
FP48_pow(&t1,&t2,x); // f^e15^u = f^(u.e15) = f^(u^3-2u^2+u) = f^(e14)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,14); // f^(u^3-2u^2+u)^p^14
FP48_mul(r,&t3); // f^3.f^(u^3-2u^2+u)^p^14
FP48_pow(&t1,&t1,x); // f^(u.e14) = f^(u^4-2u^3+u^2) = f^(e13)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,13); // f^(e13)^p^13
FP48_mul(r,&t3); // f^3.f^(u^3-2u^2+u)^p^14.f^(u^4-2u^3+u^2)^p^13
FP48_pow(&t1,&t1,x); // f^(u.e13)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,12); // f^(e12)^p^12
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e12)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,11); // f^(e11)^p^11
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e11)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,10); // f^(e10)^p^10
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e10)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,9); // f^(e9)^p^9
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e9)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,8); // f^(e8)^p^8
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e8)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_conj(&t3,&t2);
FP48_mul(&t1,&t3); // f^(u.e8).f^-e15
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,7); // f^(e7)^p^7
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e7)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,6); // f^(e6)^p^6
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e6)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,5); // f^(e5)^p^5
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e5)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,4); // f^(e4)^p^4
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e4)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,3); // f^(e3)^p^3
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e3)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,2); // f^(e2)^p^2
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e2)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_copy(&t3,&t1);
FP48_frob(&t3,&X,1); // f^(e1)^p^1
FP48_mul(r,&t3);
FP48_pow(&t1,&t1,x); // f^(u.e1)
#if SIGN_OF_X_ZZZ==NEGATIVEX
FP48_conj(&t1,&t1);
#endif
FP48_mul(r,&t1); // r.f^e0
FP48_frob(&t2,&X,15); // f^(e15.p^15)
FP48_mul(r,&t2);
FP48_reduce(r);
}
#ifdef USE_GLV_ZZZ
/* GLV method */
static void ZZZ::glv(BIG u[2],BIG e)
{
// -(x^8).P = (Beta.x,y)
BIG x,x2,q;
BIG_rcopy(x,CURVE_Bnx);
BIG_smul(x2,x,x);
BIG_smul(x,x2,x2);
BIG_smul(x2,x,x);
BIG_copy(u[0],e);
BIG_mod(u[0],x2);
BIG_copy(u[1],e);
BIG_sdiv(u[1],x2);
BIG_rcopy(q,CURVE_Order);
BIG_sub(u[1],q,u[1]);
return;
}
#endif // USE_GLV
/* Galbraith & Scott Method */
static void ZZZ::gs(BIG u[16],BIG e)
{
int i;
BIG x,w,q;
BIG_rcopy(q,CURVE_Order);
BIG_rcopy(x,CURVE_Bnx);
BIG_copy(w,e);
for (i=0; i<15; i++)
{
BIG_copy(u[i],w);
BIG_mod(u[i],x);
BIG_sdiv(w,x);
}
BIG_copy(u[15],w);
/* */
#if SIGN_OF_X_ZZZ==NEGATIVEX
BIG_modneg(u[1],u[1],q);
BIG_modneg(u[3],u[3],q);
BIG_modneg(u[5],u[5],q);
BIG_modneg(u[7],u[7],q);
BIG_modneg(u[9],u[9],q);
BIG_modneg(u[11],u[11],q);
BIG_modneg(u[13],u[13],q);
BIG_modneg(u[15],u[15],q);
#endif
return;
}
/* Multiply P by e in group G1 */
void ZZZ::PAIR_G1mul(ECP *P,BIG e)
{
#ifdef USE_GLV_ZZZ /* Note this method is patented */
int np,nn;
ECP Q;
FP cru;
BIG t,q;
BIG u[2];
BIG_rcopy(q,CURVE_Order);
glv(u,e);
ECP_copy(&Q,P); ECP_affine(&Q);
FP_rcopy(&cru,CURVE_Cru);
FP_mul(&(Q.x),&(Q.x),&cru);
/* note that -a.B = a.(-B). Use a or -a depending on which is smaller */
np=BIG_nbits(u[0]);
BIG_modneg(t,u[0],q);
nn=BIG_nbits(t);
if (nn<np)
{
BIG_copy(u[0],t);
ECP_neg(P);
}
np=BIG_nbits(u[1]);
BIG_modneg(t,u[1],q);
nn=BIG_nbits(t);
if (nn<np)
{
BIG_copy(u[1],t);
ECP_neg(&Q);
}
BIG_norm(u[0]);
BIG_norm(u[1]);
ECP_mul2(P,&Q,u[0],u[1]);
#else
ECP_mul(P,e);
#endif
}
/* Multiply P by e in group G2 */
void ZZZ::PAIR_G2mul(ECP8 *P,BIG e)
{
#ifdef USE_GS_G2_ZZZ /* Well I didn't patent it :) */
int i,np,nn;
ECP8 Q[16];
FP2 X[3];
BIG x,y,u[16];
ECP8_frob_constants(X);
BIG_rcopy(y,CURVE_Order);
gs(u,e);
ECP8_copy(&Q[0],P);
for (i=1; i<16; i++)
{
ECP8_copy(&Q[i],&Q[i-1]);
ECP8_frob(&Q[i],X,1);
}
for (i=0; i<16; i++)
{
np=BIG_nbits(u[i]);
BIG_modneg(x,u[i],y);
nn=BIG_nbits(x);
if (nn<np)
{
BIG_copy(u[i],x);
ECP8_neg(&Q[i]);
}
BIG_norm(u[i]);
}
ECP8_mul16(P,Q,u);
#else
ECP8_mul(P,e);
#endif
}
/* f=f^e */
void ZZZ::PAIR_GTpow(FP48 *f,BIG e)
{
#ifdef USE_GS_GT_ZZZ /* Note that this option requires a lot of RAM! Maybe better to use compressed XTR method, see FP16.cpp */
int i,np,nn;
FP48 g[16];
FP2 X;
BIG t,q;
FP fx,fy;
BIG u[16];
FP_rcopy(&fx,Fra);
FP_rcopy(&fy,Frb);
FP2_from_FPs(&X,&fx,&fy);
BIG_rcopy(q,CURVE_Order);
gs(u,e);
FP48_copy(&g[0],f);
for (i=1; i<16; i++)
{
FP48_copy(&g[i],&g[i-1]);
FP48_frob(&g[i],&X,1);
}
for (i=0; i<16; i++)
{
np=BIG_nbits(u[i]);
BIG_modneg(t,u[i],q);
nn=BIG_nbits(t);
if (nn<np)
{
BIG_copy(u[i],t);
FP48_conj(&g[i],&g[i]);
}
BIG_norm(u[i]);
}
FP48_pow16(f,g,u);
#else
FP48_pow(f,f,e);
#endif
}
#ifdef HAS_MAIN
using namespace std;
using namespace ZZZ;
// g++ -O2 pair256_BLS48.cpp ecp8_BLS48.cpp fp48_BLS48.cpp fp16_BLS48.cpp fp8_BLS48.cpp fp4_BLS48.cpp fp2_BLS48.cpp ecp_BLS48.cpp fp_BLS48.cpp big_B560_29.cpp rom_curve_BLS48.cpp rom_field_BLS48.cpp rand.cpp hash.cpp oct.cpp -o pair256_BLS48.exe
int main()
{
int i;
char byt[32];
csprng rng;
BIG xa,xb,ya,yb,w,a,b,t1,q,u[2],v[4],m,r,xx,x2,x4,p;
ECP8 P,G;
ECP Q,R;
FP48 g,gp;
FP16 t,c,cp,cpm1,cpm2;
FP8 X,Y;
FP2 x,y,f,Aa,Bb;
FP cru;
for (i=0;i<32;i++)
byt[i]=i+9;
RAND_seed(&rng,32,byt);
BIG_rcopy(r,CURVE_Order);
BIG_rcopy(p,Modulus);
BIG_rcopy(xa,CURVE_Gx);
BIG_rcopy(ya,CURVE_Gy);
ECP_set(&Q,xa,ya);
if (Q.inf) printf("Failed to set - point not on curve\n");
else printf("G1 set success\n");
printf("Q= ");
ECP_output(&Q);
printf("\n");
ECP8_generator(&P);
if (P.inf) printf("Failed to set - point not on curve\n");
else printf("G2 set success\n");
BIG_rcopy(a,Fra);
BIG_rcopy(b,Frb);
FP2_from_BIGs(&f,a,b);
PAIR_ate(&g,&P,&Q);
printf("gb= ");
FP48_output(&g);
printf("\n");
PAIR_fexp(&g);
printf("g= ");
FP48_output(&g);
printf("\n");
ECP_copy(&R,&Q);
ECP8_copy(&G,&P);
ECP8_dbl(&G);
ECP_dbl(&R);
ECP_affine(&R);
PAIR_ate(&g,&G,&Q);
PAIR_fexp(&g);
printf("g1= ");
FP48_output(&g);
printf("\n");
PAIR_ate(&g,&P,&R);
PAIR_fexp(&g);
printf("g2= ");
FP48_output(&g);
printf("\n");
PAIR_G1mul(&Q,r);
printf("rQ= ");ECP_output(&Q); printf("\n");
PAIR_G2mul(&P,r);
printf("rP= ");ECP8_output(&P); printf("\n");
PAIR_GTpow(&g,r);
printf("g^r= ");FP48_output(&g); printf("\n");
BIG_randomnum(w,r,&rng);
FP48_copy(&gp,&g);
PAIR_GTpow(&g,w);
FP48_trace(&t,&g);
printf("g^r= ");FP16_output(&t); printf("\n");
FP48_compow(&t,&gp,w,r);
printf("t(g)= "); FP16_output(&t); printf("\n");
}
#endif