tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

ge_p3_to_p2.c (149B)


      1 #include "ge.h"
      2 
      3 /*
      4 r = p
      5 */
      6 
      7 extern void ge_p3_to_p2(ge_p2 *r,const ge_p3 *p)
      8 {
      9  fe_copy(r->X,p->X);
     10  fe_copy(r->Y,p->Y);
     11  fe_copy(r->Z,p->Z);
     12 }