mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-10 03:27:19 -03:00
8 lines
185 B
C
8 lines
185 B
C
#include "ge25519.h"
|
|
|
|
void ge25519_double(ge25519_p3 *r, const ge25519_p3 *p)
|
|
{
|
|
ge25519_p1p1 grp1p1;
|
|
ge25519_dbl_p1p1(&grp1p1, (ge25519_p2 *)p);
|
|
ge25519_p1p1_to_p3(r, &grp1p1);
|
|
}
|