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.
17 lines
289 B
C
17 lines
289 B
C
/*
|
|
version 20081011
|
|
Matthew Dempsky
|
|
Public domain.
|
|
Derived from public domain code by D. J. Bernstein.
|
|
*/
|
|
|
|
#include "crypto_scalarmult.h"
|
|
|
|
const unsigned char base[32] = {9};
|
|
|
|
int crypto_scalarmult_base(unsigned char *q,
|
|
const unsigned char *n)
|
|
{
|
|
return crypto_scalarmult(q,n,base);
|
|
}
|