1 #include "sc25519.h"
2 
sc25519_mul_shortsc(sc25519 * r,const sc25519 * x,const shortsc25519 * y)3 void sc25519_mul_shortsc(sc25519 *r, const sc25519 *x, const shortsc25519 *y)
4 {
5   /* XXX: This wants to be faster */
6   sc25519 t;
7   sc25519_from_shortsc(&t, y);
8   sc25519_mul(r, x, &t);
9 }
10