mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-09 19:17:19 -03:00
8 lines
152 B
C
8 lines
152 B
C
#include "fe25519.h"
|
|
|
|
unsigned char fe25519_getparity(const fe25519 *x)
|
|
{
|
|
fe25519 t = *x;
|
|
fe25519_freeze(&t);
|
|
return (unsigned char)t.v[0] & 1;
|
|
}
|