game-networking-sockets-sys 0.2.0

Rust bindings for Valve GameNetworkingSockets library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CURVE25519_H
#define CURVE25519_H

typedef unsigned char curve25519_key[32];

#ifdef __cplusplus
extern "C" {
#endif

void curve25519_donna(curve25519_key mypublic, const curve25519_key secret, const curve25519_key basepoint);
void curve25519_donna_basepoint(curve25519_key mypublic, const curve25519_key secret);

#ifdef __cplusplus
}
#endif

#endif /* CURVE25519_H */