diff options
author | Yang Tse <yangsita@gmail.com> | 2008-08-17 00:01:26 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-08-17 00:01:26 +0000 |
commit | bbe2386bff61acf0105806959b7f56a4a12db86e (patch) | |
tree | 3d927496ede926ce3acf0477413b1f452558a5d7 /lib/curl_md5.h | |
parent | 2f47248e3c7e542d0590a8802a81916970f9a6d5 (diff) | |
download | curl-bbe2386bff61acf0105806959b7f56a4a12db86e.tar.gz |
libcurl internal md5.h header file renamed to curl_md5.h
Diffstat (limited to 'lib/curl_md5.h')
-rw-r--r-- | lib/curl_md5.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/curl_md5.h b/lib/curl_md5.h new file mode 100644 index 000000000..19c34fb4d --- /dev/null +++ b/lib/curl_md5.h @@ -0,0 +1,29 @@ +#ifndef __CURL_MD5_H +#define __CURL_MD5_H +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + * $Id$ + ***************************************************************************/ + +void Curl_md5it(unsigned char *output, + const unsigned char *input); + +#endif |