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