]> sjero.net Git - wget/blob - src/gen-md5.c
Updated ChangeLogs for license exemptions.
[wget] / src / gen-md5.c
1 /* General MD5 support.
2    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software
3    Foundation, Inc.
4
5 This file is part of GNU Wget.
6
7 GNU Wget is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Wget is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
19
20 Additional permission under GNU GPL version 3 section 7
21
22 If you modify this program, or any covered work, by linking or
23 combining it with the OpenSSL project's OpenSSL library (or a
24 modified version of that library), containing parts covered by the
25 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
26 grants you additional permission to convey the resulting work.
27 Corresponding Source for a non-source form of such a combination
28 shall include the source code for the parts of OpenSSL used as well
29 as that of the covered work.  */
30
31 #include <config.h>
32 #include "wget.h"
33
34 #include "gen-md5.h"
35
36 #ifdef HAVE_BUILTIN_MD5
37 # include <gnu-md5.h>
38 typedef struct md5_ctx gen_md5_context_imp;
39 #endif
40
41 #ifdef HAVE_SOLARIS_MD5
42 # include <md5.h>
43 typedef MD5_CTX gen_md5_context_imp;
44 #endif
45
46 #ifdef HAVE_OPENSSL_MD5
47 # include <openssl/md5.h>
48 typedef MD5_CTX gen_md5_context_imp;
49 #endif
50
51 struct gen_md5_context {
52   gen_md5_context_imp imp;
53 };
54
55 /* Originally I planned for these to be macros, but that's very hard
56    because some of these MD5 implementations use the same names for
57    their types.  For example, it is impossible to include <md5.h> and
58    <openssl/ssl.h> on Solaris, because the latter includes its own MD5
59    implementation, which clashes with <md5.h>.  */
60
61 int
62 gen_md5_context_size (void)
63 {
64   return sizeof (struct gen_md5_context);
65 }
66
67 void
68 gen_md5_init (gen_md5_context *ctx)
69 {
70   gen_md5_context_imp *ctx_imp = &ctx->imp;
71
72 #ifdef HAVE_BUILTIN_MD5
73   md5_init_ctx (ctx_imp);
74 #endif
75
76 #ifdef HAVE_SOLARIS_MD5
77   MD5Init (ctx_imp);
78 #endif
79
80 #ifdef HAVE_OPENSSL_MD5
81   MD5_Init (ctx_imp);
82 #endif
83 }
84
85 void
86 gen_md5_update (unsigned const char *buffer, int len, gen_md5_context *ctx)
87 {
88   gen_md5_context_imp *ctx_imp = &ctx->imp;
89
90 #ifdef HAVE_BUILTIN_MD5
91   md5_process_bytes (buffer, len, ctx_imp);
92 #endif
93
94 #ifdef HAVE_SOLARIS_MD5
95   MD5Update (ctx_imp, (unsigned char *)buffer, len);
96 #endif
97
98 #ifdef HAVE_OPENSSL_MD5
99   MD5_Update (ctx_imp, buffer, len);
100 #endif
101 }
102
103 void
104 gen_md5_finish (gen_md5_context *ctx, unsigned char *result)
105 {
106   gen_md5_context_imp *ctx_imp = &ctx->imp;
107
108 #ifdef HAVE_BUILTIN_MD5
109   md5_finish_ctx (ctx_imp, result);
110 #endif
111
112 #ifdef HAVE_SOLARIS_MD5
113   MD5Final (result, ctx_imp);
114 #endif
115
116 #ifdef HAVE_OPENSSL_MD5
117   MD5_Final (result, ctx_imp);
118 #endif
119 }
120
121 #if 0
122 /* A debugging function for checking whether an MD5 library works. */
123
124 #include "gen-md5.h"
125
126 char *
127 debug_test_md5 (char *buf)
128 {
129   unsigned char raw[16];
130   static char res[33];
131   unsigned char *p1;
132   char *p2;
133   int cnt;
134   ALLOCA_MD5_CONTEXT (ctx);
135
136   gen_md5_init (ctx);
137   gen_md5_update ((unsigned char *)buf, strlen (buf), ctx);
138   gen_md5_finish (ctx, raw);
139
140   p1 = raw;
141   p2 = res;
142   cnt = 16;
143   while (cnt--)
144     {
145       *p2++ = XNUM_TO_digit (*p1 >> 4);
146       *p2++ = XNUM_TO_digit (*p1 & 0xf);
147       ++p1;
148     }
149   *p2 = '\0';
150
151   return res;
152 }
153 #endif