mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2025-01-09 10:09:06 +00:00
8 lines
214 B
C
8 lines
214 B
C
#ifndef X25519_H
|
|
#define X25519_H
|
|
|
|
void curve25519_derive_public_key(unsigned char public_key[32], const unsigned char private_key[32]);
|
|
void curve25519_generate_private_key(unsigned char private_key[32]);
|
|
|
|
#endif
|