mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-27 08:32:33 +00:00
9 lines
181 B
C
9 lines
181 B
C
|
#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);
|
||
|
}
|