sc25519_mul_shortsc.c 210 B

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