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