Define COMPUTE_ARRAY_LEN.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 31 Jan 2007 13:53:36 +0000 (13:53 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 31 Jan 2007 13:53:36 +0000 (13:53 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@748 38d2e660-2303-0410-9eaa-f027e97ec537

algos/md2.h

index a44c1f8d75a20ee621433cd55dfb90527ad87672..b56e12ddef406507bd590e03b3b8c182a39a19dd 100755 (executable)
@@ -21,6 +21,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.4  2007/01/31 13:53:36  asterix
+ *#* Define COMPUTE_ARRAY_LEN.
+ *#*
  *#* Revision 1.3  2007/01/31 11:16:48  asterix
  *#* Defined constants for algorithm compute
  *#*
@@ -38,8 +41,8 @@
 #include <cfg/compiler.h>
 #include <appconfig.h>
 
-#define COMPUTE_ARRAY_LEN 48     ///< Lenght of compute array.
-#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.
 
 /**
  * Context for MD2 computation.
@@ -50,6 +53,7 @@ typedef struct Md2Context
        uint8_t state[CONFIG_MD2_BLOCK_LEN];    ///< Current state buffer.
        uint8_t checksum[CONFIG_MD2_BLOCK_LEN]; ///< Checksum.
        size_t counter;                         ///< Counter of remaining bytes.
+
 } Md2Context;
 
 void md2_init(Md2Context *context);