mirror of
https://github.com/moparisthebest/curl
synced 2025-03-07 20:59:41 -05:00
libcurl internal md5.h header file renamed to curl_md5.h
This commit is contained in:
parent
2f47248e3c
commit
bbe2386bff
@ -343,10 +343,10 @@ $(OBJ_DIR)\http_digest.obj: http_digest.c setup.h config-win32.h &
|
|||||||
..\include\curl\curlrules.h ..\include\curl\easy.h &
|
..\include\curl\curlrules.h ..\include\curl\easy.h &
|
||||||
..\include\curl\multi.h ..\include\curl\curl.h formdata.h timeval.h &
|
..\include\curl\multi.h ..\include\curl\curl.h formdata.h timeval.h &
|
||||||
http_chunks.h hostip.h hash.h llist.h splay.h sendf.h strequal.h &
|
http_chunks.h hostip.h hash.h llist.h splay.h sendf.h strequal.h &
|
||||||
base64.h md5.h http_digest.h strtok.h url.h memory.h easyif.h &
|
base64.h curl_md5.h http_digest.h strtok.h url.h memory.h easyif.h &
|
||||||
..\include\curl\mprintf.h memdebug.h
|
..\include\curl\mprintf.h memdebug.h
|
||||||
$(OBJ_DIR)\md5.obj: md5.c setup.h config-win32.h ..\include\curl\curlbuild.h &
|
$(OBJ_DIR)\md5.obj: md5.c setup.h config-win32.h ..\include\curl\curlbuild.h &
|
||||||
..\include\curl\curlrules.h setup_once.h md5.h
|
..\include\curl\curlrules.h setup_once.h curl_md5.h
|
||||||
$(OBJ_DIR)\http_negotiate.obj: http_negotiate.c setup.h config-win32.h &
|
$(OBJ_DIR)\http_negotiate.obj: http_negotiate.c setup.h config-win32.h &
|
||||||
..\include\curl\curlbuild.h ..\include\curl\curlrules.h setup_once.h
|
..\include\curl\curlbuild.h ..\include\curl\curlrules.h setup_once.h
|
||||||
$(OBJ_DIR)\http_ntlm.obj: http_ntlm.c setup.h config-win32.h &
|
$(OBJ_DIR)\http_ntlm.obj: http_ntlm.c setup.h config-win32.h &
|
||||||
|
@ -15,8 +15,8 @@ HHEADERS = arpa_telnet.h netrc.h file.h timeval.h base64.h hostip.h \
|
|||||||
progress.h formdata.h cookie.h http.h sendf.h ftp.h url.h dict.h \
|
progress.h formdata.h cookie.h http.h sendf.h ftp.h url.h dict.h \
|
||||||
if2ip.h speedcheck.h urldata.h curl_ldap.h ssluse.h escape.h telnet.h \
|
if2ip.h speedcheck.h urldata.h curl_ldap.h ssluse.h escape.h telnet.h \
|
||||||
getinfo.h strequal.h krb4.h memdebug.h inet_ntoa_r.h http_chunks.h \
|
getinfo.h strequal.h krb4.h memdebug.h inet_ntoa_r.h http_chunks.h \
|
||||||
strtok.h connect.h llist.h hash.h content_encoding.h share.h md5.h \
|
strtok.h connect.h llist.h hash.h content_encoding.h share.h \
|
||||||
http_digest.h http_negotiate.h http_ntlm.h inet_pton.h \
|
curl_md5.h http_digest.h http_negotiate.h http_ntlm.h inet_pton.h \
|
||||||
strtoofft.h strerror.h inet_ntop.h curlx.h memory.h setup.h \
|
strtoofft.h strerror.h inet_ntop.h curlx.h memory.h setup.h \
|
||||||
transfer.h select.h easyif.h multiif.h parsedate.h sslgen.h gtls.h \
|
transfer.h select.h easyif.h multiif.h parsedate.h sslgen.h gtls.h \
|
||||||
tftp.h sockaddr.h splay.h strdup.h setup_once.h socks.h ssh.h nssg.h \
|
tftp.h sockaddr.h splay.h strdup.h setup_once.h socks.h ssh.h nssg.h \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef __MD5_H
|
#ifndef __CURL_MD5_H
|
||||||
#define __MD5_H
|
#define __CURL_MD5_H
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
* _ _ ____ _
|
* _ _ ____ _
|
||||||
* Project ___| | | | _ \| |
|
* Project ___| | | | _ \| |
|
||||||
@ -7,7 +7,7 @@
|
|||||||
* | (__| |_| | _ <| |___
|
* | (__| |_| | _ <| |___
|
||||||
* \___|\___/|_| \_\_____|
|
* \___|\___/|_| \_\_____|
|
||||||
*
|
*
|
||||||
* Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
|
* Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||||
*
|
*
|
||||||
* This software is licensed as described in the file COPYING, which
|
* This software is licensed as described in the file COPYING, which
|
||||||
* you should have received as part of this distribution. The terms
|
* you should have received as part of this distribution. The terms
|
@ -34,7 +34,7 @@
|
|||||||
#include "sendf.h"
|
#include "sendf.h"
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "base64.h"
|
#include "base64.h"
|
||||||
#include "md5.h"
|
#include "curl_md5.h"
|
||||||
#include "http_digest.h"
|
#include "http_digest.h"
|
||||||
#include "strtok.h"
|
#include "strtok.h"
|
||||||
#include "url.h" /* for Curl_safefree() */
|
#include "url.h" /* for Curl_safefree() */
|
||||||
|
@ -338,7 +338,7 @@ static void Decode (UINT4 *output,
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "md5.h"
|
#include "curl_md5.h"
|
||||||
|
|
||||||
void Curl_md5it(unsigned char *outbuffer, /* 16 bytes */
|
void Curl_md5it(unsigned char *outbuffer, /* 16 bytes */
|
||||||
const unsigned char *input)
|
const unsigned char *input)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user