/* * Copyright (C) 2011 Martin Willi * Copyright (C) 2011 revosec AG * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. See . * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. */ /** * @defgroup hybrid_authenticator hybrid_authenticator * @{ @ingroup authenticators_v1 */ #ifndef HYBRID_AUTHENTICATOR_H_ #define HYBRID_AUTHENTICATOR_H_ typedef struct hybrid_authenticator_t hybrid_authenticator_t; #include /** * Implementation of authenticator_t using IKEv1 hybrid authentication. */ struct hybrid_authenticator_t { /** * Implemented authenticator_t interface. */ authenticator_t authenticator; }; /** * Create an authenticator to build hybrid signatures. * * @param ike_sa associated IKE_SA * @param initiator TRUE if we are the IKE_SA initiator * @param dh diffie hellman key exchange * @param dh_value others public diffie hellman value * @param sa_payload generated SA payload data, without payload header * @param id_payload encoded ID payload of peer to authenticate or verify * without payload header (gets owned) * @return hybrid authenticator */ hybrid_authenticator_t *hybrid_authenticator_create(ike_sa_t *ike_sa, bool initiator, diffie_hellman_t *dh, chunk_t dh_value, chunk_t sa_payload, chunk_t id_payload); #endif /** HYBRID_AUTHENTICATOR_H_ @}*/