]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fixup doxygen headers in EAP fast
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 17 May 2017 17:24:02 +0000 (13:24 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 17 May 2017 17:32:56 +0000 (13:32 -0400)
src/modules/rlm_eap/types/rlm_eap_fast/eap_fast.c
src/modules/rlm_eap/types/rlm_eap_fast/eap_fast.h
src/modules/rlm_eap/types/rlm_eap_fast/eap_fast_crypto.c
src/modules/rlm_eap/types/rlm_eap_fast/eap_fast_crypto.h
src/modules/rlm_eap/types/rlm_eap_fast/rlm_eap_fast.c

index 2f77b8d1137102b7937f84a84fcb717ab0c6b471..c056bb39ff8c8a7dcff74025c15c16d5f90aefb2 100644 (file)
@@ -1,12 +1,8 @@
 /*
- * eap_fast.c  contains the interfaces that are called from the main handler
- *
- * Version:     $Id$
- *
  *   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.
+ *   the Free Software Foundation; either version 2 of the License, or (at
+ *   your option) any later version.
  *
  *   This program is distributed in the hope that it will be useful,
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  *   You should have received a copy of the GNU General Public License
  *   along with this program; if not, write to the Free Software
  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- *
- *   Copyright 2016 Alan DeKok <aland@freeradius.org>
- *   Copyright 2016 The FreeRADIUS server project
  */
 
+/**
+ * $Id$
+ * @file eap_fast.c
+ * @brief Contains the interfaces that are called from the main handler
+ *
+ * @author Alexander Clouter <alex@digriz.org.uk>
+
+ * @copyright 2016 Alan DeKok <aland@freeradius.org>
+ * @copyright 2016 The FreeRADIUS server project
+ */
 RCSID("$Id$")
 
 #include "eap_fast.h"
index 82542b1fe2f11080840ca03cc1017cb23a3f444a..984501d62a7cc831a4b6a2b005f0e25ea1c79736 100644 (file)
@@ -1,12 +1,8 @@
 /*
- * eap_fast.h
- *
- * Version:     $Id$
- *
  *   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.
+ *   the Free Software Foundation; either version 2 of the License, or (at
+ *   your option) any later version.
  *
  *   This program is distributed in the hope that it will be useful,
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  *   You should have received a copy of the GNU General Public License
  *   along with this program; if not, write to the Free Software
  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * $Id$
+ * @file eap_fast.h
+ * @brief Function declarations and packet structures
+ *
+ * @author Alexander Clouter <alex@digriz.org.uk>
  *
- * Copyright 2003 Alan DeKok <aland@freeradius.org>
- * Copyright 2006 The FreeRADIUS server project
+ * @copyright 2016 Alan DeKok <aland@freeradius.org>
+ * @copyright 2016 The FreeRADIUS server project
  */
 #ifndef _EAP_FAST_H
 #define _EAP_FAST_H
-
 RCSIDH(eap_fast_h, "$Id$")
 
 #include "eap_tls.h"
index 6cc9852c15a1fa325a32a50d84caac97b345aeec..1ea55cda710c1344d80fa2844e6407360aecef8a 100644 (file)
@@ -1,12 +1,8 @@
 /*
- * fast-crypto.c  Cryptographic functions for EAP-FAST.
- *
- * Version:     $Id$
- *
  *   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.
+ *   the Free Software Foundation; either version 2 of the License, or (at
+ *   your option) any later version.
  *
  *   This program is distributed in the hope that it will be useful,
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  *   You should have received a copy of the GNU General Public License
  *   along with this program; if not, write to the Free Software
  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- *
- * Copyright 2016 Alan DeKok <aland@freeradius.org>
- * Copyright 2016 The FreeRADIUS server project
  */
 
+/**
+ * $Id$
+ * @file eap_fast_crypto.c
+ * @brief Cryptographic functions for EAP-FAST.
+ *
+ * @author Alexander Clouter <alex@digriz.org.uk>
+ *
+ * @copyright 2016 Alan DeKok <aland@freeradius.org>
+ * @copyright 2016 The FreeRADIUS server project
+ */
 RCSID("$Id$")
 USES_APPLE_DEPRECATED_API      /* OpenSSL API has been deprecated by Apple */
 
index c2f40dd7d5f6e93ceb6769c69543d6b0a4096d9c..a2fbe6e9ba8ba7a4fc68471c7f113ddf22a8cac8 100644 (file)
@@ -1,3 +1,33 @@
+/*
+ *   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.
+ *
+ *   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.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with this program; if not, write to the Free Software
+ *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/**
+ * $Id$
+ * @file eap_fast_crypto.h
+ * @brief Crypto function declarations.
+ *
+ * @author Alexander Clouter <alex@digriz.org.uk>
+ *
+ * @copyright 2016 Alan DeKok <aland@freeradius.org>
+ * @copyright 2016 The FreeRADIUS server project
+ */
+#ifndef _EAP_FAST_CRYPTO_H
+#define _EAP_FAST_CRYPTO_H
+RCSIDH(eap_fast_crypto_h, "$Id$")
+
 int eap_fast_encrypt(uint8_t const *plaintext, size_t plaintext_len,
                     uint8_t const *aad, size_t aad_len,
                     uint8_t const *key, uint8_t *iv, unsigned char *ciphertext,
@@ -6,3 +36,4 @@ int eap_fast_encrypt(uint8_t const *plaintext, size_t plaintext_len,
 int eap_fast_decrypt(uint8_t const *ciphertext, size_t ciphertext_len,
                     uint8_t const *aad, size_t aad_len,
                     uint8_t const *tag, uint8_t const *key, uint8_t const *iv, uint8_t *plaintext);
+#endif /*  _EAP_FAST_CRYPTO_H */
index ff35d283bf5d10e19951d6da897b5cba7576f370..57a674e67e175e7e4826c3f848c16fba684b32b3 100644 (file)
@@ -1,12 +1,8 @@
 /*
- * rlm_eap_fast.c  contains the interfaces that are called from eap
- *
- * Version:     $Id$
- *
  *   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.
+ *   the Free Software Foundation; either version 2 of the License, or (at
+ *   your option) any later version.
  *
  *   This program is distributed in the hope that it will be useful,
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  *   You should have received a copy of the GNU General Public License
  *   along with this program; if not, write to the Free Software
  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- *
- * Copyright 2016 Alan DeKok <aland@freeradius.org>
- * Copyright 2016 The FreeRADIUS server project
  */
 
+/**
+ * $Id$
+ * @file rlm_eap_fast.c
+ * @brief contains the interfaces that are called from eap
+ *
+ * @author Alexander Clouter <alex@digriz.org.uk>
+ *
+ * @copyright 2016 Alan DeKok <aland@freeradius.org>
+ * @copyright 2016 The FreeRADIUS server project
+ */
 RCSID("$Id$")
 USES_APPLE_DEPRECATED_API      /* OpenSSL API has been deprecated by Apple */