annotate dvdread/md5.c @ 249:5d643668f1e3 src

I added this code myself a long time ago, but now I am quite convinced that it is wrong: Why would we filter out SPU stream change events that switch SPUs off? This breaks watching the trailer on the RC2 of "Girl, interrupted", because you always get unwanted subtitles. When I added this code, it fixed a problem with the RC2 of "Terminator", but I cannot reproduce this problem any more. Back then, the menu highlights would not show up, but they do now. I assume the problem really got fixed with proper support for forced subtitles in xine, so this crappy workaround here can go away. After all, this way it is more symmetric to audio stream change events, because these are not filtered.
author mroi
date Sun, 12 Sep 2004 15:12:43 +0000
parents 9b1b740e3fc9
children 056a92fbd053
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
1 /* md5.c - Functions to compute MD5 message digest of files or memory blocks
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
2 according to the definition of MD5 in RFC 1321 from April 1992.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
3 Copyright (C) 1995, 1996, 2001 Free Software Foundation, Inc.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
4 NOTE: The canonical source of this file is maintained with the GNU C
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
5 Library. Bugs can be reported to bug-glibc@prep.ai.mit.edu.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
6
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
7 This program is free software; you can redistribute it and/or modify it
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
10 later version.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
11
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
12 This program is distributed in the hope that it will be useful,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
15 GNU General Public License for more details.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
16
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
18 along with this program; if not, write to the Free Software Foundation,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
19 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
20
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
21 /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
22
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
23 #ifdef HAVE_CONFIG_H
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
24 # include <config.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
25 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
26
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
27 #include <sys/types.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
28
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
29 #if STDC_HEADERS || defined _LIBC
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
30 # include <stdlib.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
31 # include <string.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
32 #else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
33 # ifndef HAVE_MEMCPY
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
34 # define memcpy(d, s, n) bcopy ((s), (d), (n))
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
35 # endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
36 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
37
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
38 #include "md5.h"
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
39 /* #include "unlocked-io.h" */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
40
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
41 #ifdef _LIBC
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
42 # include <endian.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
43 # if __BYTE_ORDER == __BIG_ENDIAN
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
44 # define WORDS_BIGENDIAN 1
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
45 # endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
46 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
47
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
48 #ifdef WORDS_BIGENDIAN
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
49 # define SWAP(n) \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
50 (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
51 #else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
52 # define SWAP(n) (n)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
53 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
54
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
55
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
56 /* This array contains the bytes used to pad the buffer to the next
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
57 64-byte boundary. (RFC 1321, 3.1: Step 1) */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
58 static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
59
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
60
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
61 /* Initialize structure containing state of computation.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
62 (RFC 1321, 3.3: Step 3) */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
63 void
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
64 md5_init_ctx (ctx)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
65 struct md5_ctx *ctx;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
66 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
67 ctx->A = 0x67452301;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
68 ctx->B = 0xefcdab89;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
69 ctx->C = 0x98badcfe;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
70 ctx->D = 0x10325476;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
71
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
72 ctx->total[0] = ctx->total[1] = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
73 ctx->buflen = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
74 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
75
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
76 /* Put result from CTX in first 16 bytes following RESBUF. The result
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
77 must be in little endian byte order.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
78
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
79 IMPORTANT: On some systems it is required that RESBUF is correctly
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
80 aligned for a 32 bits value. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
81 void *
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
82 md5_read_ctx (ctx, resbuf)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
83 const struct md5_ctx *ctx;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
84 void *resbuf;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
85 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
86 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
87 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
88 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
89 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
90
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
91 return resbuf;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
92 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
93
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
94 /* Process the remaining bytes in the internal buffer and the usual
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
95 prolog according to the standard and write the result to RESBUF.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
96
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
97 IMPORTANT: On some systems it is required that RESBUF is correctly
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
98 aligned for a 32 bits value. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
99 void *
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
100 md5_finish_ctx (ctx, resbuf)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
101 struct md5_ctx *ctx;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
102 void *resbuf;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
103 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
104 /* Take yet unprocessed bytes into account. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
105 md5_uint32 bytes = ctx->buflen;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
106 size_t pad;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
107
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
108 /* Now count remaining bytes. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
109 ctx->total[0] += bytes;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
110 if (ctx->total[0] < bytes)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
111 ++ctx->total[1];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
112
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
113 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
114 memcpy (&ctx->buffer[bytes], fillbuf, pad);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
115
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
116 /* Put the 64-bit file length in *bits* at the end of the buffer. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
117 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
118 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
119 (ctx->total[0] >> 29));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
120
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
121 /* Process last bytes. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
122 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
123
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
124 return md5_read_ctx (ctx, resbuf);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
125 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
126
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
127 /* Compute MD5 message digest for bytes read from STREAM. The
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
128 resulting message digest number will be written into the 16 bytes
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
129 beginning at RESBLOCK. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
130 int
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
131 md5_stream (stream, resblock)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
132 FILE *stream;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
133 void *resblock;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
134 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
135 /* Important: BLOCKSIZE must be a multiple of 64. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
136 #define BLOCKSIZE 4096
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
137 struct md5_ctx ctx;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
138 char buffer[BLOCKSIZE + 72];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
139 size_t sum;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
140
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
141 /* Initialize the computation context. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
142 md5_init_ctx (&ctx);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
143
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
144 /* Iterate over full file contents. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
145 while (1)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
146 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
147 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
148 computation function processes the whole buffer so that with the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
149 next round of the loop another block can be read. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
150 size_t n;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
151 sum = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
152
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
153 /* Read block. Take care for partial reads. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
154 do
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
155 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
156 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
157
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
158 sum += n;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
159 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
160 while (sum < BLOCKSIZE && n != 0);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
161 if (n == 0 && ferror (stream))
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
162 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
163
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
164 /* If end of file is reached, end the loop. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
165 if (n == 0)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
166 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
167
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
168 /* Process buffer with BLOCKSIZE bytes. Note that
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
169 BLOCKSIZE % 64 == 0
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
170 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
171 md5_process_block (buffer, BLOCKSIZE, &ctx);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
172 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
173
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
174 /* Add the last bytes if necessary. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
175 if (sum > 0)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
176 md5_process_bytes (buffer, sum, &ctx);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
177
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
178 /* Construct result in desired memory. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
179 md5_finish_ctx (&ctx, resblock);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
180 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
181 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
182
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
183 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
184 result is always in little endian byte order, so that a byte-wise
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
185 output yields to the wanted ASCII representation of the message
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
186 digest. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
187 void *
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
188 md5_buffer (buffer, len, resblock)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
189 const char *buffer;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
190 size_t len;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
191 void *resblock;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
192 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
193 struct md5_ctx ctx;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
194
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
195 /* Initialize the computation context. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
196 md5_init_ctx (&ctx);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
197
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
198 /* Process whole buffer but last len % 64 bytes. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
199 md5_process_bytes (buffer, len, &ctx);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
200
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
201 /* Put result in desired memory area. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
202 return md5_finish_ctx (&ctx, resblock);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
203 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
204
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
205
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
206 void
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
207 md5_process_bytes (buffer, len, ctx)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
208 const void *buffer;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
209 size_t len;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
210 struct md5_ctx *ctx;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
211 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
212 /* When we already have some bits in our internal buffer concatenate
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
213 both inputs first. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
214 if (ctx->buflen != 0)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
215 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
216 size_t left_over = ctx->buflen;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
217 size_t add = 128 - left_over > len ? len : 128 - left_over;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
218
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
219 memcpy (&ctx->buffer[left_over], buffer, add);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
220 ctx->buflen += add;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
221
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
222 if (left_over + add > 64)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
223 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
224 md5_process_block (ctx->buffer, (left_over + add) & ~63, ctx);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
225 /* The regions in the following copy operation cannot overlap. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
226 memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~63],
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
227 (left_over + add) & 63);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
228 ctx->buflen = (left_over + add) & 63;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
229 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
230
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
231 buffer = (const char *) buffer + add;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
232 len -= add;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
233 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
234
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
235 /* Process available complete blocks. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
236 if (len > 64)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
237 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
238 md5_process_block (buffer, len & ~63, ctx);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
239 buffer = (const char *) buffer + (len & ~63);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
240 len &= 63;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
241 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
242
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
243 /* Move remaining bytes in internal buffer. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
244 if (len > 0)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
245 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
246 memcpy (ctx->buffer, buffer, len);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
247 ctx->buflen = len;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
248 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
249 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
250
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
251
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
252 /* These are the four functions used in the four steps of the MD5 algorithm
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
253 and defined in the RFC 1321. The first function is a little bit optimized
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
254 (as found in Colin Plumbs public domain implementation). */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
255 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
256 #define FF(b, c, d) (d ^ (b & (c ^ d)))
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
257 #define FG(b, c, d) FF (d, b, c)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
258 #define FH(b, c, d) (b ^ c ^ d)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
259 #define FI(b, c, d) (c ^ (b | ~d))
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
260
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
261 /* Process LEN bytes of BUFFER, accumulating context into CTX.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
262 It is assumed that LEN % 64 == 0. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
263
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
264 void
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
265 md5_process_block (buffer, len, ctx)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
266 const void *buffer;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
267 size_t len;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
268 struct md5_ctx *ctx;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
269 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
270 md5_uint32 correct_words[16];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
271 const md5_uint32 *words = buffer;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
272 size_t nwords = len / sizeof (md5_uint32);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
273 const md5_uint32 *endp = words + nwords;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
274 md5_uint32 A = ctx->A;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
275 md5_uint32 B = ctx->B;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
276 md5_uint32 C = ctx->C;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
277 md5_uint32 D = ctx->D;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
278
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
279 /* First increment the byte count. RFC 1321 specifies the possible
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
280 length of the file up to 2^64 bits. Here we only compute the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
281 number of bytes. Do a double word increment. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
282 ctx->total[0] += len;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
283 if (ctx->total[0] < len)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
284 ++ctx->total[1];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
285
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
286 /* Process all bytes in the buffer with 64 bytes in each round of
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
287 the loop. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
288 while (words < endp)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
289 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
290 md5_uint32 *cwp = correct_words;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
291 md5_uint32 A_save = A;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
292 md5_uint32 B_save = B;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
293 md5_uint32 C_save = C;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
294 md5_uint32 D_save = D;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
295
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
296 /* First round: using the given function, the context and a constant
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
297 the next context is computed. Because the algorithms processing
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
298 unit is a 32-bit word and it is determined to work on words in
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
299 little endian byte order we perhaps have to change the byte order
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
300 before the computation. To reduce the work for the next steps
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
301 we store the swapped words in the array CORRECT_WORDS. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
302
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
303 #define OP(a, b, c, d, s, T) \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
304 do \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
305 { \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
306 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
307 ++words; \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
308 a = rol (a, s); \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
309 a += b; \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
310 } \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
311 while (0)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
312
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
313 /* Before we start, one word to the strange constants.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
314 They are defined in RFC 1321 as
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
315
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
316 T[i] = (int) (4294967296.0 * fabs (sin (i))), i=1..64, or
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
317 perl -e 'foreach(1..64){printf "0x%08x\n", int (4294967296 * abs (sin $_))}'
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
318 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
319
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
320 /* Round 1. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
321 OP (A, B, C, D, 7, 0xd76aa478);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
322 OP (D, A, B, C, 12, 0xe8c7b756);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
323 OP (C, D, A, B, 17, 0x242070db);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
324 OP (B, C, D, A, 22, 0xc1bdceee);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
325 OP (A, B, C, D, 7, 0xf57c0faf);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
326 OP (D, A, B, C, 12, 0x4787c62a);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
327 OP (C, D, A, B, 17, 0xa8304613);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
328 OP (B, C, D, A, 22, 0xfd469501);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
329 OP (A, B, C, D, 7, 0x698098d8);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
330 OP (D, A, B, C, 12, 0x8b44f7af);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
331 OP (C, D, A, B, 17, 0xffff5bb1);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
332 OP (B, C, D, A, 22, 0x895cd7be);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
333 OP (A, B, C, D, 7, 0x6b901122);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
334 OP (D, A, B, C, 12, 0xfd987193);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
335 OP (C, D, A, B, 17, 0xa679438e);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
336 OP (B, C, D, A, 22, 0x49b40821);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
337
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
338 /* For the second to fourth round we have the possibly swapped words
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
339 in CORRECT_WORDS. Redefine the macro to take an additional first
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
340 argument specifying the function to use. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
341 #undef OP
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
342 #define OP(f, a, b, c, d, k, s, T) \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
343 do \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
344 { \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
345 a += f (b, c, d) + correct_words[k] + T; \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
346 a = rol (a, s); \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
347 a += b; \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
348 } \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
349 while (0)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
350
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
351 /* Round 2. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
352 OP (FG, A, B, C, D, 1, 5, 0xf61e2562);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
353 OP (FG, D, A, B, C, 6, 9, 0xc040b340);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
354 OP (FG, C, D, A, B, 11, 14, 0x265e5a51);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
355 OP (FG, B, C, D, A, 0, 20, 0xe9b6c7aa);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
356 OP (FG, A, B, C, D, 5, 5, 0xd62f105d);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
357 OP (FG, D, A, B, C, 10, 9, 0x02441453);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
358 OP (FG, C, D, A, B, 15, 14, 0xd8a1e681);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
359 OP (FG, B, C, D, A, 4, 20, 0xe7d3fbc8);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
360 OP (FG, A, B, C, D, 9, 5, 0x21e1cde6);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
361 OP (FG, D, A, B, C, 14, 9, 0xc33707d6);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
362 OP (FG, C, D, A, B, 3, 14, 0xf4d50d87);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
363 OP (FG, B, C, D, A, 8, 20, 0x455a14ed);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
364 OP (FG, A, B, C, D, 13, 5, 0xa9e3e905);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
365 OP (FG, D, A, B, C, 2, 9, 0xfcefa3f8);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
366 OP (FG, C, D, A, B, 7, 14, 0x676f02d9);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
367 OP (FG, B, C, D, A, 12, 20, 0x8d2a4c8a);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
368
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
369 /* Round 3. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
370 OP (FH, A, B, C, D, 5, 4, 0xfffa3942);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
371 OP (FH, D, A, B, C, 8, 11, 0x8771f681);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
372 OP (FH, C, D, A, B, 11, 16, 0x6d9d6122);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
373 OP (FH, B, C, D, A, 14, 23, 0xfde5380c);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
374 OP (FH, A, B, C, D, 1, 4, 0xa4beea44);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
375 OP (FH, D, A, B, C, 4, 11, 0x4bdecfa9);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
376 OP (FH, C, D, A, B, 7, 16, 0xf6bb4b60);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
377 OP (FH, B, C, D, A, 10, 23, 0xbebfbc70);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
378 OP (FH, A, B, C, D, 13, 4, 0x289b7ec6);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
379 OP (FH, D, A, B, C, 0, 11, 0xeaa127fa);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
380 OP (FH, C, D, A, B, 3, 16, 0xd4ef3085);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
381 OP (FH, B, C, D, A, 6, 23, 0x04881d05);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
382 OP (FH, A, B, C, D, 9, 4, 0xd9d4d039);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
383 OP (FH, D, A, B, C, 12, 11, 0xe6db99e5);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
384 OP (FH, C, D, A, B, 15, 16, 0x1fa27cf8);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
385 OP (FH, B, C, D, A, 2, 23, 0xc4ac5665);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
386
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
387 /* Round 4. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
388 OP (FI, A, B, C, D, 0, 6, 0xf4292244);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
389 OP (FI, D, A, B, C, 7, 10, 0x432aff97);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
390 OP (FI, C, D, A, B, 14, 15, 0xab9423a7);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
391 OP (FI, B, C, D, A, 5, 21, 0xfc93a039);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
392 OP (FI, A, B, C, D, 12, 6, 0x655b59c3);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
393 OP (FI, D, A, B, C, 3, 10, 0x8f0ccc92);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
394 OP (FI, C, D, A, B, 10, 15, 0xffeff47d);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
395 OP (FI, B, C, D, A, 1, 21, 0x85845dd1);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
396 OP (FI, A, B, C, D, 8, 6, 0x6fa87e4f);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
397 OP (FI, D, A, B, C, 15, 10, 0xfe2ce6e0);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
398 OP (FI, C, D, A, B, 6, 15, 0xa3014314);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
399 OP (FI, B, C, D, A, 13, 21, 0x4e0811a1);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
400 OP (FI, A, B, C, D, 4, 6, 0xf7537e82);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
401 OP (FI, D, A, B, C, 11, 10, 0xbd3af235);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
402 OP (FI, C, D, A, B, 2, 15, 0x2ad7d2bb);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
403 OP (FI, B, C, D, A, 9, 21, 0xeb86d391);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
404
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
405 /* Add the starting values of the context. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
406 A += A_save;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
407 B += B_save;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
408 C += C_save;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
409 D += D_save;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
410 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
411
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
412 /* Put checksum in context given as argument. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
413 ctx->A = A;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
414 ctx->B = B;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
415 ctx->C = C;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
416 ctx->D = D;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
417 }