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