#pragma once /*! * \file */ #ifdef __cplusplus extern "C" { #endif /*! * \brief The SharedKey struct. * * Stored the derived shared secret after for instance Diffie-Hellman. */ struct SharedKey { void* shared; ///< The Shared key. }; #ifdef __cplusplus } // extern "C" #endif