Generic interface.
[u/mdw/catacomb] / md5.h
CommitLineData
d03ab969 1/* -*-c-*-
2 *
3 * $Id: md5.h,v 1.1 1999/09/03 08:41:12 mdw Exp $
4 *
5 * The MD5 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/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: md5.h,v $
33 * Revision 1.1 1999/09/03 08:41:12 mdw
34 * Initial import.
35 *
36 */
37
38/*----- Notes on the MD5 hash function ------------------------------------*
39 *
40 * MD5 was designed by Ron Rivest. It was intended to be a more conservative
41 * design than the slightly earlier MD4, and indeed while MD4 has been pretty
42 * much demolished by subsequent cryptanalysis, MD5 is still standing
43 * shakily. It's provided here not because the author recommends its use but
44 * because it's a common standard, and is often handy in non-cryptographic
45 * applications. It's also still useful in constructions such as HMAC.
46 */
47
48#ifndef MD5_H
49#define MD5_H
50
51#ifdef __cplusplus
52 extern "C" {
53#endif
54
55/*----- Header files ------------------------------------------------------*/
56
57#include <mLib/bits.h>
58
59/*----- Magic numbers -----------------------------------------------------*/
60
61#define MD5_BUFSZ 64
62#define MD5_HASHSZ 16
63
64/*----- Data structures ---------------------------------------------------*/
65
66typedef struct md5_ctx {
67 uint32 a, b, c, d; /* Chaining variables */
68 unsigned long count; /* Byte count so far */
69 int off; /* Offset into buffer */
70 octet buf[MD5_BUFSZ]; /* Accumulation buffer */
71} md5_ctx;
72
73/*----- Functions provided ------------------------------------------------*/
74
75/* --- @md5_compress@ --- *
76 *
77 * Arguments: @md5_ctx *ctx@ = pointer to context block
78 * @const void *sbuf@ = pointer to buffer of appropriate size
79 *
80 * Returns: ---
81 *
82 * Use: MD5 compression function.
83 */
84
85extern void md5_compress(md5_ctx */*ctx*/, const void */*sbuf*/);
86
87/* --- @md5_init@ --- *
88 *
89 * Arguments: @md5_ctx *ctx@ = pointer to context block to initialize
90 *
91 * Returns: ---
92 *
93 * Use: Initializes a context block ready for hashing.
94 */
95
96extern void md5_init(md5_ctx */*ctx*/);
97
98/* --- @md5_set@ --- *
99 *
100 * Arguments: @md5_ctx *ctx@ = pointer to context block
101 * @const void *buf@ = pointer to state buffer
102 * @unsigned long count@ = current count of bytes processed
103 *
104 * Returns: ---
105 *
106 * Use: Initializes a context block from a given state. This is
107 * useful in cases where the initial hash state is meant to be
108 * secret, e.g., for NMAC and HMAC support.
109 */
110
111extern void md5_set(md5_ctx */*ctx*/, const void */*buf*/,
112 unsigned long /*count*/);
113
114/* --- @md5_hash@ --- *
115 *
116 * Arguments: @md5_ctx *ctx@ = pointer to context block
117 * @const void *buf@ = buffer of data to hash
118 * @size_t sz@ = size of buffer to hash
119 *
120 * Returns: ---
121 *
122 * Use: Hashes a buffer of data. The buffer may be of any size and
123 * alignment.
124 */
125
126extern void md5_hash(md5_ctx */*ctx*/, const void */*buf*/, size_t /*sz*/);
127
128/* --- @md5_done@ --- *
129 *
130 * Arguments: @md5_ctx *ctx@ = pointer to context block
131 * @void *hash@ = pointer to output buffer
132 *
133 * Returns: ---
134 *
135 * Use: Returns the hash of the data read so far.
136 */
137
138extern void md5_done(md5_ctx */*ctx*/, void */*hash*/);
139
140/* --- @md5_state@ --- *
141 *
142 * Arguments: @md5_ctx *ctx@ = pointer to context
143 * @void *state@ = pointer to buffer for current state
144 *
145 * Returns: Number of bytes written to the hash function so far.
146 *
147 * Use: Returns the current state of the hash function such that
148 * it can be passed to @md5_set@.
149 */
150
151extern unsigned long md5_state(md5_ctx */*ctx*/, void */*state*/);
152
153/*----- That's all, folks -------------------------------------------------*/
154
155#ifdef __cplusplus
156 }
157#endif
158
159#endif