base.c 196 B

12345678
  1. #include "crypto_scalarmult.h"
  2. static const unsigned char basepoint[32] = {9};
  3. int crypto_scalarmult_base(unsigned char *q,const unsigned char *n)
  4. {
  5. return crypto_scalarmult(q,n,basepoint);
  6. }