annotate md5.h @ 92:7ab44001373e src tip

Use 0 instead of NULL in integer comparison Both GCC 4.8.2 and Clang 3.4 warn about a format mismatch in a comparison. libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -mno-ms-bitfields -O3 -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOUR CE -MT ifo_read.lo -MD -MP -MF .deps/ifo_read.Tpo -c ifo_read.c -fPIC -DPIC -o .libs/ifo_read.o [กฤ] ifo_read.c: In function 'ifoRead_PTL_MAIT': ifo_read.c:1313:34: warning: comparison between pointer and integer [enabled by default] if(ifofile->vmgi_mat->ptl_mait == NULL) libtool: compile: clang -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -O3 -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -MT ifo_read. lo -MD -MP -MF .deps/ifo_read.Tpo -c ifo_read.c -fPIC -DPIC -o .libs/ifo_read.o [กฤ] ifo_read.c:1313:34: warning: comparison between pointer and integer ('uint32_t' (aka 'unsigned int') and 'void *') if(ifofile->vmgi_mat->ptl_mait == NULL) ~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~ Fix this by using the integer 0 instead of `NULL`. Patch by Paul Menzel <paulepanter AT users DOT sourceforge DOT net>
author rathann
date Wed, 04 Dec 2013 22:44:23 +0000
parents 8796d6c029b1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
1 /* md5.h - Declaration of functions and data types used for MD5 sum
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
2 computing library functions.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
3 Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
4 NOTE: The canonical source of this file is maintained with the GNU C
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
5 Library. Bugs can be reported to bug-glibc@prep.ai.mit.edu.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
6
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
7 This program is free software; you can redistribute it and/or modify it
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
10 later version.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
11
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
12 This program is distributed in the hope that it will be useful,
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
15 GNU General Public License for more details.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
16
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
18 along with this program; if not, write to the Free Software Foundation,
21
4aa618ae094f Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents: 3
diff changeset
19 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
20
23
ac07d427fbc6 Use consistent multiple inclusion guards everywhere:
diego
parents: 21
diff changeset
21 #ifndef LIBDVDREAD_MD5_H
ac07d427fbc6 Use consistent multiple inclusion guards everywhere:
diego
parents: 21
diff changeset
22 #define LIBDVDREAD_MD5_H
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
23
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
24 #include <stdio.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
25
86
8796d6c029b1 Fix undefined variable warning in md5.h.
rathann
parents: 27
diff changeset
26 #if defined HAVE_LIMITS_H || defined _LIBC
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
27 # include <limits.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
28 #endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
29
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
30 /* The following contortions are an attempt to use the C preprocessor
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
31 to determine an unsigned integral type that is 32 bits wide. An
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
32 alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
33 doing that would require that the configure script compile and *run*
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
34 the resulting executable. Locally running cross-compiled executables
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
35 is usually not possible. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
36
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
37 #ifdef _LIBC
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
38 # include <sys/types.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
39 typedef u_int32_t md5_uint32;
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
40 #else
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
41 # if defined __STDC__ && __STDC__
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
42 # define UINT_MAX_32_BITS 4294967295U
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
43 # else
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
44 # define UINT_MAX_32_BITS 0xFFFFFFFF
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
45 # endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
46
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
47 /* If UINT_MAX isn't defined, assume it's a 32-bit type.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
48 This should be valid for all systems GNU cares about because
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
49 that doesn't include 16-bit systems, and only modern systems
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
50 (that certainly have <limits.h>) have 64+-bit integral types. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
51
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
52 # ifndef UINT_MAX
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
53 # define UINT_MAX UINT_MAX_32_BITS
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
54 # endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
55
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
56 # if UINT_MAX == UINT_MAX_32_BITS
27
98951f8ec89c cosmetics: Sync indentation and similar changes from libdvdread 0.9.5.
diego
parents: 26
diff changeset
57 typedef unsigned int md5_uint32;
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
58 # else
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
59 # if USHRT_MAX == UINT_MAX_32_BITS
27
98951f8ec89c cosmetics: Sync indentation and similar changes from libdvdread 0.9.5.
diego
parents: 26
diff changeset
60 typedef unsigned short md5_uint32;
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
61 # else
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
62 # if ULONG_MAX == UINT_MAX_32_BITS
27
98951f8ec89c cosmetics: Sync indentation and similar changes from libdvdread 0.9.5.
diego
parents: 26
diff changeset
63 typedef unsigned long md5_uint32;
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
64 # else
27
98951f8ec89c cosmetics: Sync indentation and similar changes from libdvdread 0.9.5.
diego
parents: 26
diff changeset
65 /* The following line is intended to evoke an error.
98951f8ec89c cosmetics: Sync indentation and similar changes from libdvdread 0.9.5.
diego
parents: 26
diff changeset
66 Using #error is not portable enough. */
98951f8ec89c cosmetics: Sync indentation and similar changes from libdvdread 0.9.5.
diego
parents: 26
diff changeset
67 "Cannot determine unsigned 32-bit data type."
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
68 # endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
69 # endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
70 # endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
71 #endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
72
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
73 #undef __P
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
74 #if defined (__STDC__) && __STDC__
26
0d82d0f30c98 cosmetics: Convert all tabs to spaces.
diego
parents: 23
diff changeset
75 #define __P(x) x
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
76 #else
26
0d82d0f30c98 cosmetics: Convert all tabs to spaces.
diego
parents: 23
diff changeset
77 #define __P(x) ()
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
78 #endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
79
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
80 /* Structure to save state of computation between the single steps. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
81 struct md5_ctx
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
82 {
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
83 md5_uint32 A;
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
84 md5_uint32 B;
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
85 md5_uint32 C;
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
86 md5_uint32 D;
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
87
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
88 md5_uint32 total[2];
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
89 md5_uint32 buflen;
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
90 char buffer[128];
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
91 };
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
92
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
93 /*
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
94 * The following three functions are build up the low level used in
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
95 * the functions `md5_stream' and `md5_buffer'.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
96 */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
97
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
98 /* Initialize structure containing state of computation.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
99 (RFC 1321, 3.3: Step 3) */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
100 extern void md5_init_ctx __P ((struct md5_ctx *ctx));
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
101
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
102 /* Starting with the result of former calls of this function (or the
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
103 initialization function update the context for the next LEN bytes
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
104 starting at BUFFER.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
105 It is necessary that LEN is a multiple of 64!!! */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
106 extern void md5_process_block __P ((const void *buffer, size_t len,
26
0d82d0f30c98 cosmetics: Convert all tabs to spaces.
diego
parents: 23
diff changeset
107 struct md5_ctx *ctx));
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
108
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
109 /* Starting with the result of former calls of this function (or the
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
110 initialization function update the context for the next LEN bytes
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
111 starting at BUFFER.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
112 It is NOT required that LEN is a multiple of 64. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
113 extern void md5_process_bytes __P ((const void *buffer, size_t len,
26
0d82d0f30c98 cosmetics: Convert all tabs to spaces.
diego
parents: 23
diff changeset
114 struct md5_ctx *ctx));
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
115
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
116 /* Process the remaining bytes in the buffer and put result from CTX
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
117 in first 16 bytes following RESBUF. The result is always in little
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
118 endian byte order, so that a byte-wise output yields to the wanted
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
119 ASCII representation of the message digest.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
120
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
121 IMPORTANT: On some systems it is required that RESBUF be correctly
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
122 aligned for a 32 bits value. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
123 extern void *md5_finish_ctx __P ((struct md5_ctx *ctx, void *resbuf));
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
124
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
125
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
126 /* Put result from CTX in first 16 bytes following RESBUF. The result is
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
127 always in little endian byte order, so that a byte-wise output yields
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
128 to the wanted ASCII representation of the message digest.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
129
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
130 IMPORTANT: On some systems it is required that RESBUF is correctly
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
131 aligned for a 32 bits value. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
132 extern void *md5_read_ctx __P ((const struct md5_ctx *ctx, void *resbuf));
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
133
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
134
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
135 /* Compute MD5 message digest for bytes read from STREAM. The
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
136 resulting message digest number will be written into the 16 bytes
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
137 beginning at RESBLOCK. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
138 extern int md5_stream __P ((FILE *stream, void *resblock));
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
139
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
140 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
141 result is always in little endian byte order, so that a byte-wise
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
142 output yields to the wanted ASCII representation of the message
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
143 digest. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
144 extern void *md5_buffer __P ((const char *buffer, size_t len, void *resblock));
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
145
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
146 /* The following is from gnupg-1.0.2's cipher/bithelp.h. */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
147 /* Rotate a 32 bit integer by n bytes */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
148 #if defined __GNUC__ && defined __i386__
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
149 static inline md5_uint32
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
150 rol(md5_uint32 x, int n)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
151 {
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
152 __asm__("roll %%cl,%0"
26
0d82d0f30c98 cosmetics: Convert all tabs to spaces.
diego
parents: 23
diff changeset
153 :"=r" (x)
0d82d0f30c98 cosmetics: Convert all tabs to spaces.
diego
parents: 23
diff changeset
154 :"0" (x),"c" (n));
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
155 return x;
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
156 }
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
157 #else
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
158 # define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) )
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
159 #endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
160
23
ac07d427fbc6 Use consistent multiple inclusion guards everywhere:
diego
parents: 21
diff changeset
161 #endif /* LIBDVDREAD_MD5_H */