mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-05-21 01:10:26 +00:00
init
This commit is contained in:
commit
9b80e8676c
95 changed files with 6502 additions and 0 deletions
14
ed25519/ref10/ge_tobytes.c
Normal file
14
ed25519/ref10/ge_tobytes.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "ge.h"
|
||||
|
||||
void ge_tobytes(unsigned char *s,const ge_p2 *h)
|
||||
{
|
||||
fe recip;
|
||||
fe x;
|
||||
fe y;
|
||||
|
||||
fe_invert(recip,h->Z);
|
||||
fe_mul(x,h->X,recip);
|
||||
fe_mul(y,h->Y,recip);
|
||||
fe_tobytes(s,y);
|
||||
s[31] ^= fe_isnegative(x) << 7;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue