repo.or.cz
/
mkp224o.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
some tweaks
[mkp224o.git]
/
ed25519
/
amd64-51-30k
/
fe25519_getparity.c
blob
a003ec8f54e797eef01fdb178879b4b197c9e0dd
1
#include
"fe25519.h"
2
3
unsigned char
fe25519_getparity
(
const
fe25519
*
x
)
4
{
5
fe25519 t
= *
x
;
6
fe25519_freeze
(&
t
);
7
return
(
unsigned char
)
t
.
v
[
0
] &
1
;
8
}