Annotation of embedaddon/strongswan/src/libcharon/plugins/xauth_eap/xauth_eap.h, revision 1.1
1.1 ! misho 1: /*
! 2: * Copyright (C) 2011 Martin Willi
! 3: * Copyright (C) 2011 revosec AG
! 4: *
! 5: * This program is free software; you can redistribute it and/or modify it
! 6: * under the terms of the GNU General Public License as published by the
! 7: * Free Software Foundation; either version 2 of the License, or (at your
! 8: * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
! 9: *
! 10: * This program is distributed in the hope that it will be useful, but
! 11: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
! 12: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
! 13: * for more details.
! 14: */
! 15:
! 16: /**
! 17: * @defgroup xauth_eap_i xauth_eap
! 18: * @{ @ingroup xauth_eap
! 19: */
! 20:
! 21: #ifndef XAUTH_EAP_H_
! 22: #define XAUTH_EAP_H_
! 23:
! 24: typedef struct xauth_eap_t xauth_eap_t;
! 25:
! 26: #include <sa/xauth/xauth_method.h>
! 27:
! 28: /**
! 29: * XAuth method that verifies XAuth credentials using EAP methods.
! 30: *
! 31: * To reuse existing authentication infrastructure, this XAuth method uses
! 32: * EAP to verify XAuth Username/Passwords. It is primarily designed to work
! 33: * with the EAP-RADIUS backend and can use any password-based EAP method
! 34: * over it. The credentials are fed locally on the IKE responder to a EAP
! 35: * client which talks to the backend instance, usually a RADIUS server.
! 36: */
! 37: struct xauth_eap_t {
! 38:
! 39: /**
! 40: * Implemented xauth_method_t interface.
! 41: */
! 42: xauth_method_t xauth_method;
! 43: };
! 44:
! 45: /**
! 46: * Creates the XAuth method using EAP, acting as server.
! 47: *
! 48: * @param server ID of the XAuth server
! 49: * @param peer ID of the XAuth client
! 50: * @param profile configuration string
! 51: * @return xauth_eap_t object
! 52: */
! 53: xauth_eap_t *xauth_eap_create_server(identification_t *server,
! 54: identification_t *peer,
! 55: char *profile);
! 56:
! 57: #endif /** XAUTH_EAP_H_ @}*/
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>