*
* -->
*
- * \brief XModem-CRC16 algorithm (interface)
+ * \brief Cyclic Redundancy Check 16 (CRC).
*
* \note This algorithm is incompatible with the CCITT-CRC16.
*
*
* \version $Id$
* \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "crc16",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
*/
#ifndef ALGO_CRC_H
*
* \version $Id$
* \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "md2",
+ * "depends" : [],
+ * "configuration" : "bertos/cfg/cfg_md2.h"
+ * }
*/
#ifndef ALGO_MD2_H
#include "cfg/cfg_md2.h"
#include <cfg/compiler.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
/**
*
* -->
*
+ * \brief General-purpose run-length {en,de}coding algorithm.
+ *
* \version $Id$
* \author Bernie Innocenti <bernie@codewiz.org>
*
- * \brief General-purpose run-length {en,de}coding algorithm (interface)
+ * $WIZARD_MODULE = {
+ * "name" : "rle",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
*/
#ifndef RLE_H
#define RLE_H
* \version $Id$
*
* \author Francesco Sacchi <batt@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "rotating_hash",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
*/
*
* -->
*
- * \brief TEA Tiny Encription Algorith functions (interface).
+ * \brief TEA Tiny Encription Algorith functions.
+ *
+ * Documentation for TEA is available at
+ * http://www.cl.cam.ac.uk/ftp/users/djw3/tea.ps.
*
* \version $Id$
* \author Francesco Sacchi <batt@develer.com>
*
- * Documentation for TEA is available at
- * http://www.cl.cam.ac.uk/ftp/users/djw3/tea.ps.
+ * $WIZARD_MODULE = {
+ * "name" : "tea",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
*/
#ifndef ALGO_TEA_H
#ifndef CFG_MD2_H
#define CFG_MD2_H
-/// Size of block for MD2 algorithm.
+/// Size of block for MD2 algorithm. $WIZARD = { "type" : "int", "min" : "0" }
#define CONFIG_MD2_BLOCK_LEN 16
-/// Use standard permutation in MD2 algorithm.
+/// Use standard permutation in MD2 algorithm. $WIZARD = { "type" : "boolean" }
#define CONFIG_MD2_STD_PERM 0
#endif /* CFG_MD2_H */