a44c1f8d75a20ee621433cd55dfb90527ad87672
[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.3  2007/01/31 11:16:48  asterix
25  *#* Defined constants for algorithm compute
26  *#*
27  *#* Revision 1.2  2007/01/30 17:31:44  asterix
28  *#* Add function prototypes.
29  *#*
30  *#* Revision 1.1  2007/01/30 15:53:26  batt
31  *#* Add first md2 skel.
32  *#*
33  *#*/
34
35 #ifndef ALGOS_MD2_H
36 #define ALGOS_MD2_H
37
38 #include <cfg/compiler.h>
39 #include <appconfig.h>
40
41 #define COMPUTE_ARRAY_LEN 48     ///< Lenght of compute array.
42 #define NUM_COMPUTE_ROUNDS 18    ///< Number of compute rounds.
43
44 /**
45  * Context for MD2 computation.
46  */
47 typedef struct Md2Context
48 {
49         uint8_t buffer[CONFIG_MD2_BLOCK_LEN];   ///< Input buffer.
50         uint8_t state[CONFIG_MD2_BLOCK_LEN];    ///< Current state buffer.
51         uint8_t checksum[CONFIG_MD2_BLOCK_LEN]; ///< Checksum.
52         size_t counter;                         ///< Counter of remaining bytes.
53 } Md2Context;
54
55 void md2_init(Md2Context *context);
56 void md2_update(Md2Context *context, void *block_in, size_t block_len);
57 void md2_end(Md2Context *context, void *msg_digest);
58
59 #endif /* ALGOS_MD2_H */