ce123ddf7434db9d327ffc366a6682d96ec61d36
[trex.git] /
1
2 #include "api.h"
3 #include "crypto_scalarmult.h"
4
5 #ifndef HAVE_TI_MODE
6
7 static const unsigned char basepoint[32] = {9};
8
9 int crypto_scalarmult_base(unsigned char *q,const unsigned char *n)
10 {
11   return crypto_scalarmult(q,n,basepoint);
12 }
13
14 #endif