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