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