Code Review
/
trex.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
21cb2fc656d7b22a8561eaedae395360d6d92c70
[trex.git]
/
1
#include "ge.h"
2
3
void ge_p3_tobytes(unsigned char *s,const ge_p3 *h)
4
{
5
fe recip;
6
fe x;
7
fe y;
8
9
fe_invert(recip,h->Z);
10
fe_mul(x,h->X,recip);
11
fe_mul(y,h->Y,recip);
12
fe_tobytes(s,y);
13
s[31] ^= fe_isnegative(x) << 7;
14
}