mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-10 03:27:19 -03:00
9 lines
134 B
C
9 lines
134 B
C
#include "fe25519.h"
|
|
|
|
void fe25519_setint(fe25519 *r, unsigned int v)
|
|
{
|
|
r->v[0] = v;
|
|
r->v[1] = 0;
|
|
r->v[2] = 0;
|
|
r->v[3] = 0;
|
|
}
|