1/* MD4.H - header file for MD4C.C
2 */
3
4/*-
5 SPDX-License-Identifier: RSA-MD
6
7 Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
8 rights reserved.
9
10 License to copy and use this software is granted provided that it
11 is identified as the "RSA Data Security, Inc. MD4 Message-Digest
12 Algorithm" in all material mentioning or referencing this software
13 or this function.
14 License is also granted to make and use derivative works provided
15 that such works are identified as "derived from the RSA Data
16 Security, Inc. MD4 Message-Digest Algorithm" in all material
17 mentioning or referencing the derived work.
18
19 RSA Data Security, Inc. makes no representations concerning either
20 the merchantability of this software or the suitability of this
21 software for any particular purpose. It is provided "as is"
22 without express or implied warranty of any kind.
23
24 These notices must be retained in any copies of any part of this
25 documentation and/or software.
26 */
27
28#ifndef _SYS_MD4_H_
29#define _SYS_MD4_H_
30/* MD4 context. */
31typedef struct MD4Context {
32 u_int32_t state[4]; /* state (ABCD) */
33 u_int32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */
34 unsigned char buffer[64]; /* input buffer */
35} MD4_CTX;
36
37#include <sys/cdefs.h>
38
39#ifndef _KERNEL
40
41/* Ensure libmd symbols do not clash with libcrypto */
42
43#ifndef MD4Init
44#define MD4Init _libmd_MD4Init
45#endif
46#ifndef MD4Update
47#define MD4Update _libmd_MD4Update
48#endif
49#ifndef MD4Pad
50#define MD4Pad _libmd_MD4Pad
51#endif
52#ifndef MD4Final
53#define MD4Final _libmd_MD4Final
54#endif
55#ifndef MD4End
56#define MD4End _libmd_MD4End
57#endif
58#ifndef MD4Fd
59#define MD4Fd _libmd_MD4Fd
60#endif
61#ifndef MD4FdChunk
62#define MD4FdChunk _libmd_MD4FdChunk
63#endif
64#ifndef MD4File
65#define MD4File _libmd_MD4File
66#endif
67#ifndef MD4FileChunk
68#define MD4FileChunk _libmd_MD4FileChunk
69#endif
70#ifndef MD4Data
71#define MD4Data _libmd_MD4Data
72#endif
73
74#endif
75
76__BEGIN_DECLS
77void MD4Init(MD4_CTX *);
78void MD4Update(MD4_CTX *, const unsigned char *, unsigned int);
79void MD4Pad(MD4_CTX *);
80void MD4Final(unsigned char [__min_size(16)], MD4_CTX *);
81#ifndef _KERNEL
82char * MD4End(MD4_CTX *, char *);
83char * MD4Fd(int, char *);
84char * MD4FdChunk(int, char *, off_t, off_t);
85char * MD4File(const char *, char *);
86char * MD4FileChunk(const char *, char *, off_t, off_t);
87char * MD4Data(const void *, unsigned int, char *);
88#endif
89__END_DECLS
90
91#endif /* _SYS_MD4_H_ */