Update copyright year, for commit on 2009-07-21.
[gnulib.git] / lib / md4.h
1 /* Declarations of functions and data types used for MD4 sum
2    library functions.
3    Copyright (C) 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation,
4    Inc.
5
6    This program is free software; you can redistribute it and/or modify it
7    under the terms of the GNU General Public License as published by the
8    Free Software Foundation; either version 2, or (at your option) any
9    later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 #ifndef MD4_H
21 # define MD4_H 1
22
23 # include <stdio.h>
24 # include <stdint.h>
25
26 # ifdef __cplusplus
27 extern "C" {
28 # endif
29
30 # define MD4_DIGEST_SIZE 16
31
32 /* Structure to save state of computation between the single steps.  */
33 struct md4_ctx
34 {
35   uint32_t A;
36   uint32_t B;
37   uint32_t C;
38   uint32_t D;
39
40   uint32_t total[2];
41   uint32_t buflen;
42   uint32_t buffer[32];
43 };
44
45
46 /* Initialize structure containing state of computation. */
47 extern void md4_init_ctx (struct md4_ctx *ctx);
48
49 /* Starting with the result of former calls of this function (or the
50    initialization function update the context for the next LEN bytes
51    starting at BUFFER.
52    It is necessary that LEN is a multiple of 64!!! */
53 extern void md4_process_block (const void *buffer, size_t len,
54                                struct md4_ctx *ctx);
55
56 /* Starting with the result of former calls of this function (or the
57    initialization function update the context for the next LEN bytes
58    starting at BUFFER.
59    It is NOT required that LEN is a multiple of 64.  */
60 extern void md4_process_bytes (const void *buffer, size_t len,
61                                struct md4_ctx *ctx);
62
63 /* Process the remaining bytes in the buffer and put result from CTX
64    in first 16 bytes following RESBUF.  The result is always in little
65    endian byte order, so that a byte-wise output yields to the wanted
66    ASCII representation of the message digest.  */
67 extern void *md4_finish_ctx (struct md4_ctx *ctx, void *resbuf);
68
69
70 /* Put result from CTX in first 16 bytes following RESBUF.  The result is
71    always in little endian byte order, so that a byte-wise output yields
72    to the wanted ASCII representation of the message digest.  */
73 extern void *md4_read_ctx (const struct md4_ctx *ctx, void *resbuf);
74
75
76 /* Compute MD4 message digest for bytes read from STREAM.  The
77    resulting message digest number will be written into the 16 bytes
78    beginning at RESBLOCK.  */
79 extern int md4_stream (FILE * stream, void *resblock);
80
81 /* Compute MD4 message digest for LEN bytes beginning at BUFFER.  The
82    result is always in little endian byte order, so that a byte-wise
83    output yields to the wanted ASCII representation of the message
84    digest.  */
85 extern void *md4_buffer (const char *buffer, size_t len, void *resblock);
86
87 # ifdef __cplusplus
88 }
89 # endif
90
91 #endif