Moved apache code into a folder to help prepare for packaging where we dont want...
[httpd-crcsyncproxy.git] / apache / server / util_md5.c
blob83bfa75741110763c68e5b9edc5719fd2c3494ce
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 /************************************************************************
18 * NCSA HTTPd Server
19 * Software Development Group
20 * National Center for Supercomputing Applications
21 * University of Illinois at Urbana-Champaign
22 * 605 E. Springfield, Champaign, IL 61820
23 * httpd@ncsa.uiuc.edu
25 * Copyright (C) 1995, Board of Trustees of the University of Illinois
27 ************************************************************************
29 * md5.c: NCSA HTTPd code which uses the md5c.c RSA Code
31 * Original Code Copyright (C) 1994, Jeff Hostetler, Spyglass, Inc.
32 * Portions of Content-MD5 code Copyright (C) 1993, 1994 by Carnegie Mellon
33 * University (see Copyright below).
34 * Portions of Content-MD5 code Copyright (C) 1991 Bell Communications
35 * Research, Inc. (Bellcore) (see Copyright below).
36 * Portions extracted from mpack, John G. Myers - jgm+@cmu.edu
37 * Content-MD5 Code contributed by Martin Hamilton (martin@net.lut.ac.uk)
43 /* md5.c --Module Interface to MD5. */
44 /* Jeff Hostetler, Spyglass, Inc., 1994. */
46 #include "ap_config.h"
47 #include "apr_portable.h"
48 #include "apr_strings.h"
49 #include "httpd.h"
50 #include "util_md5.h"
51 #include "util_ebcdic.h"
53 AP_DECLARE(char *) ap_md5_binary(apr_pool_t *p, const unsigned char *buf, int length)
55 const char *hex = "0123456789abcdef";
56 apr_md5_ctx_t my_md5;
57 unsigned char hash[APR_MD5_DIGESTSIZE];
58 char *r, result[33]; /* (MD5_DIGESTSIZE * 2) + 1 */
59 int i;
62 * Take the MD5 hash of the string argument.
65 apr_md5_init(&my_md5);
66 #if APR_CHARSET_EBCDIC
67 apr_md5_set_xlate(&my_md5, ap_hdrs_to_ascii);
68 #endif
69 apr_md5_update(&my_md5, buf, (unsigned int)length);
70 apr_md5_final(hash, &my_md5);
72 for (i = 0, r = result; i < APR_MD5_DIGESTSIZE; i++) {
73 *r++ = hex[hash[i] >> 4];
74 *r++ = hex[hash[i] & 0xF];
76 *r = '\0';
78 return apr_pstrndup(p, result, APR_MD5_DIGESTSIZE*2);
81 AP_DECLARE(char *) ap_md5(apr_pool_t *p, const unsigned char *string)
83 return ap_md5_binary(p, string, (int) strlen((char *)string));
86 /* these portions extracted from mpack, John G. Myers - jgm+@cmu.edu */
88 /* (C) Copyright 1993,1994 by Carnegie Mellon University
89 * All Rights Reserved.
91 * Permission to use, copy, modify, distribute, and sell this software
92 * and its documentation for any purpose is hereby granted without
93 * fee, provided that the above copyright notice appear in all copies
94 * and that both that copyright notice and this permission notice
95 * appear in supporting documentation, and that the name of Carnegie
96 * Mellon University not be used in advertising or publicity
97 * pertaining to distribution of the software without specific,
98 * written prior permission. Carnegie Mellon University makes no
99 * representations about the suitability of this software for any
100 * purpose. It is provided "as is" without express or implied
101 * warranty.
103 * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
104 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
105 * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
106 * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
107 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
108 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
109 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
110 * SOFTWARE.
114 * Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
116 * Permission to use, copy, modify, and distribute this material
117 * for any purpose and without fee is hereby granted, provided
118 * that the above copyright notice and this permission notice
119 * appear in all copies, and that the name of Bellcore not be
120 * used in advertising or publicity pertaining to this
121 * material without the specific, prior written permission
122 * of an authorized representative of Bellcore. BELLCORE
123 * MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY
124 * OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS",
125 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
128 static char basis_64[] =
129 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
131 AP_DECLARE(char *) ap_md5contextTo64(apr_pool_t *a, apr_md5_ctx_t *context)
133 unsigned char digest[18];
134 char *encodedDigest;
135 int i;
136 char *p;
138 encodedDigest = (char *) apr_pcalloc(a, 25 * sizeof(char));
140 apr_md5_final(digest, context);
141 digest[sizeof(digest) - 1] = digest[sizeof(digest) - 2] = 0;
143 p = encodedDigest;
144 for (i = 0; i < sizeof(digest); i += 3) {
145 *p++ = basis_64[digest[i] >> 2];
146 *p++ = basis_64[((digest[i] & 0x3) << 4) | ((int) (digest[i + 1] & 0xF0) >> 4)];
147 *p++ = basis_64[((digest[i + 1] & 0xF) << 2) | ((int) (digest[i + 2] & 0xC0) >> 6)];
148 *p++ = basis_64[digest[i + 2] & 0x3F];
150 *p-- = '\0';
151 *p-- = '=';
152 *p-- = '=';
153 return encodedDigest;
156 AP_DECLARE(char *) ap_md5digest(apr_pool_t *p, apr_file_t *infile)
158 apr_md5_ctx_t context;
159 unsigned char buf[4096]; /* keep this a multiple of 64 */
160 apr_size_t nbytes;
161 apr_off_t offset = 0L;
163 apr_md5_init(&context);
164 nbytes = sizeof(buf);
165 while (apr_file_read(infile, buf, &nbytes) == APR_SUCCESS) {
166 apr_md5_update(&context, buf, nbytes);
167 nbytes = sizeof(buf);
169 apr_file_seek(infile, APR_SET, &offset);
170 return ap_md5contextTo64(p, &context);