Comply to cfg name.
[bertos.git] / bertos / algo / md2.h
index 8d0edb79fb6f82671f3823571d938f74f3219c01..bce2947c5c59348c8bb3dc2d5a7a423c795c31b9 100644 (file)
  * message having a given prespecified target message digest.
  *
  *
- *
  * \version $Id$
  * \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "md2",
+ * "depends" : [],
+ * "configuration" : "bertos/cfg/cfg_md2.h"
+ * }
  */
 
 #ifndef ALGO_MD2_H
 #define ALGO_MD2_H
 
+#include "cfg/cfg_md2.h"
 #include <cfg/compiler.h>
-#include <appconfig.h>
 
-#define NUM_COMPUTE_ROUNDS 18                        ///< Number of compute rounds.
+#define NUM_COMPUTE_ROUNDS 18                           ///< Number of compute rounds.
 #define COMPUTE_ARRAY_LEN  CONFIG_MD2_BLOCK_LEN * 3     ///< Lenght of compute array.
 #define MD2_DIGEST_LEN CONFIG_MD2_BLOCK_LEN
 /**