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