aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/Crypto/x25519.h
blob: 7d8440dd3d4e16359d80b3128c32f4efa0e4eab0 (plain) (blame)
1
2
3
4
5
6
7
#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