#include "api.h" #include #include void curve25519_keypair_deleter(struct KeyPair p) {} struct KeyPair curve25519_create_keypair() { return (struct KeyPair){ NULL, NULL, 0, 0 }; } void curve25519_shared_key_deleter(struct SharedKey s) {} struct SharedKey curve25519_derive_shared_key(struct KeyPair pair, unsigned char* pub_key, bool swap_pub_order) { return (struct SharedKey){ NULL, 0 }; }