9 lines
181 B
C
Raw Normal View History

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