summaryrefslogtreecommitdiff
path: root/nacl/crypto_scalarmult/curve25519/donna_c64/base.c
blob: f33419e865b111b29510e58dd88fa80878a06cb8 (plain)
1
2
3
4
5
6
7
8
#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);
}