summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/base_curve25519_donna_c64.c
blob: 58a3f1c9b1bc5af5f78da3c70a51ada0281fc889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "api.h"

#ifdef HAVE_TI_MODE

static const unsigned char basepoint[32] = {9};

int crypto_scalarmult_base(unsigned char *q,const unsigned char *n)
{
  return crypto_scalarmult(q, n, basepoint);
}

#endif