added more 'const' to ensure that constant buffers really don't
[freeradius.git] / src / include / md5.h
1 /* GLOBAL.H - RSAREF types and constants
2  */
3
4 /*
5  *  FreeRADIUS defines to ensure globally unique MD5 function names,
6  *  so that we don't pick up vendor-specific broken MD5 libraries.
7  */
8 #define MD5_CTX         librad_MD5_CTX
9 #define MD5Init         librad_MD5Init
10 #define MD5Update       librad_MD5Update
11 #define MD5Final        librad_MD5Final
12
13 /* PROTOTYPES should be set to one if and only if the compiler supports
14   function argument prototyping.
15   The following makes PROTOTYPES default to 0 if it has not already
16   been defined with C compiler flags.
17  */
18 #ifndef PROTOTYPES
19 #  if __STDC__
20 #    define PROTOTYPES 1
21 #  else
22 #    define PROTOTYPES 0
23 #  endif
24 #endif
25
26 /* POINTER defines a generic pointer type */
27 typedef unsigned char *POINTER;
28
29 /* UINT2 defines a two byte word */
30 typedef unsigned short int UINT2;
31
32 /* UINT4 defines a four byte word */
33 #if defined(__alpha) && (defined(__osf__) || defined(__linux__))
34 typedef unsigned int UINT4;
35 #else
36 typedef unsigned long int UINT4;
37 #endif
38
39 /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
40    If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
41   returns an empty list.
42  */
43 #if PROTOTYPES
44 #define PROTO_LIST(list) list
45 #else
46 #define PROTO_LIST(list) ()
47 #endif
48
49 /* MD5.H - header file for MD5C.C
50  */
51
52 /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
53 rights reserved.
54
55 License to copy and use this software is granted provided that it
56 is identified as the "RSA Data Security, Inc. MD5 Message-Digest
57 Algorithm" in all material mentioning or referencing this software
58 or this function.
59
60 License is also granted to make and use derivative works provided
61 that such works are identified as "derived from the RSA Data
62 Security, Inc. MD5 Message-Digest Algorithm" in all material
63 mentioning or referencing the derived work.
64
65 RSA Data Security, Inc. makes no representations concerning either
66 the merchantability of this software or the suitability of this
67 software for any particular purpose. It is provided "as is"
68 without express or implied warranty of any kind.
69
70 These notices must be retained in any copies of any part of this
71 documentation and/or software.
72  */
73
74 /* MD5 context. */
75 typedef struct {
76   UINT4 state[4];                                   /* state (ABCD) */
77   UINT4 count[2];        /* number of bits, modulo 2^64 (lsb first) */
78   unsigned char buffer[64];                         /* input buffer */
79 } MD5_CTX;
80
81 void MD5Init PROTO_LIST ((MD5_CTX *));
82 void MD5Update PROTO_LIST
83   ((MD5_CTX *, const unsigned char *, unsigned int));
84 void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));