#pragma once #ifdef __cplusplus extern "C" { #endif struct KeyPair { char* sec; char* pub; }; extern struct KeyPair curve25519_create_keypair(); #ifdef __cplusplus } #endif