mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-05-27 04:07:12 +00:00
init
This commit is contained in:
commit
9b80e8676c
95 changed files with 6502 additions and 0 deletions
13
ed25519/ref10/ge_p1p1_to_p3.c
Normal file
13
ed25519/ref10/ge_p1p1_to_p3.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include "ge.h"
|
||||
|
||||
/*
|
||||
r = p
|
||||
*/
|
||||
|
||||
extern void ge_p1p1_to_p3(ge_p3 *r,const ge_p1p1 *p)
|
||||
{
|
||||
fe_mul(r->X,p->X,p->T);
|
||||
fe_mul(r->Y,p->Y,p->Z);
|
||||
fe_mul(r->Z,p->Z,p->T);
|
||||
fe_mul(r->T,p->X,p->Y);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue