Define COMPUTE_ARRAY_LEN.
[bertos.git] / algos / md2.h
1 /**
2  * \file
3  * <!--
4  * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See README.devlib for information.
6  * -->
7  *
8  * \brief MD2 Message-Digest algorithm.
9  *
10  * The algorithm takes as input a message of arbitrary length and produces
11  * as output a 128-bit message digest of the input.
12  * It is conjectured that it is computationally infeasible to produce
13  * two messages having the same message digest, or to produce any
14  * message having a given prespecified target message digest.
15  *
16  *
17  *
18  * \version $Id$
19  * \author Daniele Basile <asterix@develer.com>
20  */
21
22 /*#*
23  *#* $Log$
24  *#* Revision 1.4  2007/01/31 13:53:36  asterix
25  *#* Define COMPUTE_ARRAY_LEN.
26  *#*
27  *#* Revision 1.3  2007/01/31 11:16:48  asterix
28  *#* Defined constants for algorithm compute
29  *#*
30  *#* Revision 1.2  2007/01/30 17:31:44  asterix
31  *#* Add function prototypes.
32  *#*
33  *#* Revision 1.1  2007/01/30 15:53:26  batt
34  *#* Add first md2 skel.
35  *#*
36  *#*/
37
38 #ifndef ALGOS_MD2_H
39 #define ALGOS_MD2_H
40
41 #include <cfg/compiler.h>
42 #include <appconfig.h>
43
44 #define NUM_COMPUTE_ROUNDS 18                        ///< Number of compute rounds.
45 #define COMPUTE_ARRAY_LEN  CONFIG_MD2_BLOCK_LEN * 3     ///< Lenght of compute array.
46
47 /**
48  * Context for MD2 computation.
49  */
50 typedef struct Md2Context
51 {
52         uint8_t buffer[CONFIG_MD2_BLOCK_LEN];   ///< Input buffer.
53         uint8_t state[CONFIG_MD2_BLOCK_LEN];    ///< Current state buffer.
54         uint8_t checksum[CONFIG_MD2_BLOCK_LEN]; ///< Checksum.
55         size_t counter;                         ///< Counter of remaining bytes.
56
57 } Md2Context;
58
59 void md2_init(Md2Context *context);
60 void md2_update(Md2Context *context, void *block_in, size_t block_len);
61 void md2_end(Md2Context *context, void *msg_digest);
62
63 #endif /* ALGOS_MD2_H */