1 #include "sc25519.h"
2 
sc25519_from_shortsc(sc25519 * r,const shortsc25519 * x)3 void sc25519_from_shortsc(sc25519 *r, const shortsc25519 *x)
4 {
5   r->v[0] = x->v[0];
6   r->v[1] = x->v[1];
7   r->v[2] = 0;
8   r->v[3] = 0;
9 }
10