aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcryptobox/curve25519/curve25519.h
blob: 2d87e34cb8855794158e303abd22c2f4492ef0ef (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef CURVE25519_H
#define CURVE25519_H

#include "config.h"

static const guchar curve25519_basepoint[32] = {9};

int curve25519 (guchar *mypublic, const guchar *secret, const guchar *basepoint);

#endif