From f4aa0157048c945bc8d54e87946909dd496c85cb Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 11 Jan 2015 13:46:38 +0100 Subject: doc: move comments from generated source files to headers Unfortunately, Doxygen stopped interpreting the .c.in files as C source files a while ago. Move the comments to the header files to avoid the Doxygen warnings. --- src/crypto/mac/macs.c.in | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/crypto/mac') diff --git a/src/crypto/mac/macs.c.in b/src/crypto/mac/macs.c.in index c4cbecc..29e9f57 100644 --- a/src/crypto/mac/macs.c.in +++ b/src/crypto/mac/macs.c.in @@ -64,7 +64,6 @@ static inline bool mac_available(const fastd_mac_t *mac) { return (!mac->available) || mac->available(); } -/** Initializes the list of MAC implementations */ void fastd_mac_init(void) { size_t i, j; for (i = 0; i < array_size(macs); i++) { @@ -77,7 +76,6 @@ void fastd_mac_init(void) { } } -/** Configures a MAC to use a specific implementation */ bool fastd_mac_config(const char *name, const char *impl) { size_t i; for (i = 0; i < array_size(macs); i++) { @@ -100,7 +98,6 @@ bool fastd_mac_config(const char *name, const char *impl) { return false; } -/** Returns information about the MAC with the specified name if there is an implementation available */ const fastd_mac_info_t * fastd_mac_info_get_by_name(const char *name) { size_t i; for (i = 0; i < array_size(macs); i++) { @@ -116,7 +113,6 @@ const fastd_mac_info_t * fastd_mac_info_get_by_name(const char *name) { return NULL; } -/** Returns the chosen MAC implementation for a given cipher */ const fastd_mac_t * fastd_mac_get(const fastd_mac_info_t *info) { size_t i; for (i = 0; i < array_size(macs); i++) { -- cgit v1.2.3