1 /* Functions to compute MD5 message digest of files or memory blocks.
2 according to the definition of MD5 in RFC 1321 from April 1992.
3 Copyright (C) 1995-2014 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. */
26 #include <sys/types.h>
28 #if STDC_HEADERS || defined _LIBC
33 # define memcpy(d, s, n) (bcopy ((s), (d), (n)), (d))
41 # if __BYTE_ORDER == __BIG_ENDIAN
42 # define WORDS_BIGENDIAN 1
44 /* We need to keep the namespace clean so define the MD5 function
45 protected using leading __ . */
46 # define md5_init_ctx __md5_init_ctx
47 # define md5_process_bytes __md5_process_bytes
48 # define md5_finish_ctx __md5_finish_ctx
49 # define md5_read_ctx __md5_read_ctx
50 # define md5_stream __md5_stream
51 # define md5_buffer __md5_buffer
54 #ifdef WORDS_BIGENDIAN
56 (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))
62 /* This array contains the bytes used to pad the buffer to the next
63 64-byte boundary. (RFC 1321, 3.1: Step 1) */
64 static const unsigned char fillbuf
[64] = { 0x80, 0 /* , 0, 0, ... */ };
67 /* Initialize structure containing state of computation.
68 (RFC 1321, 3.3: Step 3) */
78 ctx
->total
[0] = ctx
->total
[1] = 0;
82 /* Put result from CTX in first 16 bytes following RESBUF. The result
83 must be in little endian byte order.
85 IMPORTANT: On some systems it is required that RESBUF is correctly
86 aligned for a 32 bits value. */
88 md5_read_ctx (ctx
, resbuf
)
89 const struct md5_ctx
*ctx
;
92 ((md5_uint32
*) resbuf
)[0] = SWAP (ctx
->A
);
93 ((md5_uint32
*) resbuf
)[1] = SWAP (ctx
->B
);
94 ((md5_uint32
*) resbuf
)[2] = SWAP (ctx
->C
);
95 ((md5_uint32
*) resbuf
)[3] = SWAP (ctx
->D
);
100 /* Process the remaining bytes in the internal buffer and the usual
101 prolog according to the standard and write the result to RESBUF.
103 IMPORTANT: On some systems it is required that RESBUF is correctly
104 aligned for a 32 bits value. */
106 md5_finish_ctx (ctx
, resbuf
)
110 /* Take yet unprocessed bytes into account. */
111 md5_uint32 bytes
= ctx
->buflen
;
114 /* Now count remaining bytes. */
115 ctx
->total
[0] += bytes
;
116 if (ctx
->total
[0] < bytes
)
119 pad
= bytes
>= 56 ? 64 + 56 - bytes
: 56 - bytes
;
120 memcpy (&ctx
->buffer
[bytes
], fillbuf
, pad
);
122 /* Put the 64-bit file length in *bits* at the end of the buffer. */
123 ctx
->buffer32
[(bytes
+ pad
) / 4] = SWAP (ctx
->total
[0] << 3);
124 ctx
->buffer32
[(bytes
+ pad
+ 4) / 4] = SWAP ((ctx
->total
[1] << 3) |
125 (ctx
->total
[0] >> 29));
127 /* Process last bytes. */
128 __md5_process_block (ctx
->buffer
, bytes
+ pad
+ 8, ctx
);
130 return md5_read_ctx (ctx
, resbuf
);
133 /* Compute MD5 message digest for bytes read from STREAM. The
134 resulting message digest number will be written into the 16 bytes
135 beginning at RESBLOCK. */
137 md5_stream (stream
, resblock
)
141 /* Important: BLOCKSIZE must be a multiple of 64. */
142 #define BLOCKSIZE 4096
144 char buffer
[BLOCKSIZE
+ 72];
147 /* Initialize the computation context. */
150 /* Iterate over full file contents. */
153 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
154 computation function processes the whole buffer so that with the
155 next round of the loop another block can be read. */
159 /* Read block. Take care for partial reads. */
162 n
= fread (buffer
+ sum
, 1, BLOCKSIZE
- sum
, stream
);
166 while (sum
< BLOCKSIZE
&& n
!= 0);
167 if (n
== 0 && ferror (stream
))
170 /* If end of file is reached, end the loop. */
174 /* Process buffer with BLOCKSIZE bytes. Note that
177 __md5_process_block (buffer
, BLOCKSIZE
, &ctx
);
180 /* Add the last bytes if necessary. */
182 md5_process_bytes (buffer
, sum
, &ctx
);
184 /* Construct result in desired memory. */
185 md5_finish_ctx (&ctx
, resblock
);
189 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
190 result is always in little endian byte order, so that a byte-wise
191 output yields to the wanted ASCII representation of the message
194 md5_buffer (buffer
, len
, resblock
)
201 /* Initialize the computation context. */
204 /* Process whole buffer but last len % 64 bytes. */
205 md5_process_bytes (buffer
, len
, &ctx
);
207 /* Put result in desired memory area. */
208 return md5_finish_ctx (&ctx
, resblock
);
213 md5_process_bytes (buffer
, len
, ctx
)
218 /* When we already have some bits in our internal buffer concatenate
219 both inputs first. */
220 if (ctx
->buflen
!= 0)
222 size_t left_over
= ctx
->buflen
;
223 size_t add
= 128 - left_over
> len
? len
: 128 - left_over
;
225 memcpy (&ctx
->buffer
[left_over
], buffer
, add
);
228 if (ctx
->buflen
> 64)
230 __md5_process_block (ctx
->buffer
, ctx
->buflen
& ~63, ctx
);
233 /* The regions in the following copy operation cannot overlap. */
234 memcpy (ctx
->buffer
, &ctx
->buffer
[(left_over
+ add
) & ~63],
238 buffer
= (const char *) buffer
+ add
;
242 /* Process available complete blocks. */
245 #if !_STRING_ARCH_unaligned
246 /* To check alignment gcc has an appropriate operator. Other
249 # define UNALIGNED_P(p) (((md5_uintptr) p) % __alignof__ (md5_uint32) != 0)
251 # define UNALIGNED_P(p) (((md5_uintptr) p) % sizeof (md5_uint32) != 0)
253 if (UNALIGNED_P (buffer
))
256 __md5_process_block (memcpy (ctx
->buffer
, buffer
, 64), 64, ctx
);
257 buffer
= (const char *) buffer
+ 64;
263 __md5_process_block (buffer
, len
& ~63, ctx
);
264 buffer
= (const char *) buffer
+ (len
& ~63);
269 /* Move remaining bytes in internal buffer. */
272 size_t left_over
= ctx
->buflen
;
274 memcpy (&ctx
->buffer
[left_over
], buffer
, len
);
278 __md5_process_block (ctx
->buffer
, 64, ctx
);
280 memcpy (ctx
->buffer
, &ctx
->buffer
[64], left_over
);
282 ctx
->buflen
= left_over
;
286 #include <md5-block.c>