#pragma once #ifdef __cplusplus extern "C" { #endif #include "keypair.h" #include typedef struct KeyPair(*CmixKeyPairCreator)(); typedef struct KeyPair(*CmixKeyPairLoader)(char*, char*); struct CmixKeyManagementImpl { CmixKeyPairCreator create_new_keypair; CmixKeyPairLoader load_keypair; }; #ifdef __cplusplus } // extern "C" #endif