mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-26 16:21:09 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
9 lines
198 B
C
9 lines
198 B
C
#include "crypto_scalarmult.h"
|
|
|
|
static const unsigned char basepoint[32] = {9};
|
|
|
|
int crypto_scalarmult_base(unsigned char *q,const unsigned char *n)
|
|
{
|
|
return crypto_scalarmult(q, n, basepoint);
|
|
}
|