]> sjero.net Git - wget/blob - src/gen-md5.c
[svn] Merge of fix for bugs 20341 and 20410.
[wget] / src / gen-md5.c
1 /* General MD5 support.
2    Copyright (C) 2001 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Wget 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
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
18
19 In addition, as a special exception, the Free Software Foundation
20 gives permission to link the code of its release of Wget with the
21 OpenSSL project's "OpenSSL" library (or with modified versions of it
22 that use the same license as the "OpenSSL" library), and distribute
23 the linked executables.  You must obey the GNU General Public License
24 in all respects for all of the code used other than "OpenSSL".  If you
25 modify this file, you may extend this exception to your version of the
26 file, but you are not obligated to do so.  If you do not wish to do
27 so, delete this exception statement from your version.  */
28
29 #include <config.h>
30 #include "wget.h"
31
32 #include "gen-md5.h"
33
34 #ifdef HAVE_BUILTIN_MD5
35 # include <gnu-md5.h>
36 typedef struct md5_ctx gen_md5_context_imp;
37 #endif
38
39 #ifdef HAVE_SOLARIS_MD5
40 # include <md5.h>
41 typedef MD5_CTX gen_md5_context_imp;
42 #endif
43
44 #ifdef HAVE_OPENSSL_MD5
45 # include <openssl/md5.h>
46 typedef MD5_CTX gen_md5_context_imp;
47 #endif
48
49 struct gen_md5_context {
50   gen_md5_context_imp imp;
51 };
52
53 /* Originally I planned for these to be macros, but that's very hard
54    because some of these MD5 implementations use the same names for
55    their types.  For example, it is impossible to include <md5.h> and
56    <openssl/ssl.h> on Solaris, because the latter includes its own MD5
57    implementation, which clashes with <md5.h>.  */
58
59 int
60 gen_md5_context_size (void)
61 {
62   return sizeof (struct gen_md5_context);
63 }
64
65 void
66 gen_md5_init (gen_md5_context *ctx)
67 {
68   gen_md5_context_imp *ctx_imp = &ctx->imp;
69
70 #ifdef HAVE_BUILTIN_MD5
71   md5_init_ctx (ctx_imp);
72 #endif
73
74 #ifdef HAVE_SOLARIS_MD5
75   MD5Init (ctx_imp);
76 #endif
77
78 #ifdef HAVE_OPENSSL_MD5
79   MD5_Init (ctx_imp);
80 #endif
81 }
82
83 void
84 gen_md5_update (unsigned const char *buffer, int len, gen_md5_context *ctx)
85 {
86   gen_md5_context_imp *ctx_imp = &ctx->imp;
87
88 #ifdef HAVE_BUILTIN_MD5
89   md5_process_bytes (buffer, len, ctx_imp);
90 #endif
91
92 #ifdef HAVE_SOLARIS_MD5
93   MD5Update (ctx_imp, (unsigned char *)buffer, len);
94 #endif
95
96 #ifdef HAVE_OPENSSL_MD5
97   MD5_Update (ctx_imp, buffer, len);
98 #endif
99 }
100
101 void
102 gen_md5_finish (gen_md5_context *ctx, unsigned char *result)
103 {
104   gen_md5_context_imp *ctx_imp = &ctx->imp;
105
106 #ifdef HAVE_BUILTIN_MD5
107   md5_finish_ctx (ctx_imp, result);
108 #endif
109
110 #ifdef HAVE_SOLARIS_MD5
111   MD5Final (result, ctx_imp);
112 #endif
113
114 #ifdef HAVE_OPENSSL_MD5
115   MD5_Final (result, ctx_imp);
116 #endif
117 }
118
119 #if 0
120 /* A debugging function for checking whether an MD5 library works. */
121
122 #include "gen-md5.h"
123
124 char *
125 debug_test_md5 (char *buf)
126 {
127   unsigned char raw[16];
128   static char res[33];
129   unsigned char *p1;
130   char *p2;
131   int cnt;
132   ALLOCA_MD5_CONTEXT (ctx);
133
134   gen_md5_init (ctx);
135   gen_md5_update ((unsigned char *)buf, strlen (buf), ctx);
136   gen_md5_finish (ctx, raw);
137
138   p1 = raw;
139   p2 = res;
140   cnt = 16;
141   while (cnt--)
142     {
143       *p2++ = XNUM_TO_digit (*p1 >> 4);
144       *p2++ = XNUM_TO_digit (*p1 & 0xf);
145       ++p1;
146     }
147   *p2 = '\0';
148
149   return res;
150 }
151 #endif