chiark / gitweb /
cleanup: Big pile of whitespace fixes, all at once.
[catacomb] / md4.h
1 /* -*-c-*-
2  *
3  * $Id: md4.h,v 1.5 2004/04/08 01:36:15 mdw Exp $
4  *
5  * The MD4 message digest function
6  *
7  * (c) 1998 Straylight/Edgeware
8  */
9
10 /*----- Licensing notice --------------------------------------------------*
11  *
12  * This file is part of Catacomb.
13  *
14  * Catacomb is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU Library General Public License as
16  * published by the Free Software Foundation; either version 2 of the
17  * License, or (at your option) any later version.
18  *
19  * Catacomb is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU Library General Public License for more details.
23  *
24  * You should have received a copy of the GNU Library General Public
25  * License along with Catacomb; if not, write to the Free
26  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27  * MA 02111-1307, USA.
28  */
29
30 /*----- Notes on the MD4 hash function ------------------------------------*
31  *
32  * MD4 was designed by Ron Rivest.  It's now well and truly broken: not only
33  * have collisions been discovered, a slightly cut-down version has been
34  * shown to be non-preimage-resistant.  On the other hand, MD4 is fast and
35  * makes a good heavy-duty checksum.  Just don't rely on it being
36  * cryptographically strong, 'cos it ain't.
37  */
38
39 #ifndef CATACOMB_MD4_H
40 #define CATACOMB_MD4_H
41
42 #ifdef __cplusplus
43   extern "C" {
44 #endif
45
46 /*----- Header files ------------------------------------------------------*/
47
48 #include <mLib/bits.h>
49
50 #ifndef CATACOMB_GHASH_H
51 #  include "ghash.h"
52 #endif
53
54 /*----- Magic numbers -----------------------------------------------------*/
55
56 #define MD4_BUFSZ 64
57 #define MD4_HASHSZ 16
58 #define MD4_STATESZ 16
59
60 /*----- Data structures ---------------------------------------------------*/
61
62 typedef struct md4_ctx {
63   uint32 a, b, c, d;                    /* Chaining variables */
64   uint32 nl, nh;                        /* Byte count so far */
65   unsigned off;                         /* Offset into buffer */
66   octet buf[MD4_BUFSZ];                 /* Accumulation buffer */
67 } md4_ctx;
68
69 /*----- Functions provided ------------------------------------------------*/
70
71 /* --- @md4_compress@ --- *
72  *
73  * Arguments:   @md4_ctx *ctx@ = pointer to context block
74  *              @const void *sbuf@ = pointer to buffer of appropriate size
75  *
76  * Returns:     ---
77  *
78  * Use:         MD4 compression function.
79  */
80
81 extern void md4_compress(md4_ctx */*ctx*/, const void */*sbuf*/);
82
83 /* --- @md4_init@ --- *
84  *
85  * Arguments:   @md4_ctx *ctx@ = pointer to context block to initialize
86  *
87  * Returns:     ---
88  *
89  * Use:         Initializes a context block ready for hashing.
90  */
91
92 extern void md4_init(md4_ctx */*ctx*/);
93
94 /* --- @md4_set@ --- *
95  *
96  * Arguments:   @md4_ctx *ctx@ = pointer to context block
97  *              @const void *buf@ = pointer to state buffer
98  *              @unsigned long count@ = current count of bytes processed
99  *
100  * Returns:     ---
101  *
102  * Use:         Initializes a context block from a given state.  This is
103  *              useful in cases where the initial hash state is meant to be
104  *              secret, e.g., for NMAC and HMAC support.
105  */
106
107 extern void md4_set(md4_ctx */*ctx*/, const void */*buf*/,
108                     unsigned long /*count*/);
109
110 /* --- @md4_hash@ --- *
111  *
112  * Arguments:   @md4_ctx *ctx@ = pointer to context block
113  *              @const void *buf@ = buffer of data to hash
114  *              @size_t sz@ = size of buffer to hash
115  *
116  * Returns:     ---
117  *
118  * Use:         Hashes a buffer of data.  The buffer may be of any size and
119  *              alignment.
120  */
121
122 extern void md4_hash(md4_ctx */*ctx*/, const void */*buf*/, size_t /*sz*/);
123
124 /* --- @md4_done@ --- *
125  *
126  * Arguments:   @md4_ctx *ctx@ = pointer to context block
127  *              @void *hash@ = pointer to output buffer
128  *
129  * Returns:     ---
130  *
131  * Use:         Returns the hash of the data read so far.
132  */
133
134 extern void md4_done(md4_ctx */*ctx*/, void */*hash*/);
135
136 /* --- @md4_state@ --- *
137  *
138  * Arguments:   @md4_ctx *ctx@ = pointer to context
139  *              @void *state@ = pointer to buffer for current state
140  *
141  * Returns:     Number of bytes written to the hash function so far.
142  *
143  * Use:         Returns the current state of the hash function such that
144  *              it can be passed to @md4_set@.
145  */
146
147 extern unsigned long md4_state(md4_ctx */*ctx*/, void */*state*/);
148
149 /*----- Generic hash interface --------------------------------------------*/
150
151 extern const gchash md4;
152
153 /*----- That's all, folks -------------------------------------------------*/
154
155 #ifdef __cplusplus
156   }
157 #endif
158
159 #endif