#pragma once #ifdef __cplusplus extern "C" { #endif #include struct KeyPair { unsigned char* sec; unsigned char* pub; unsigned int sec_len; unsigned int pub_len; }; #ifdef __cplusplus } #endif