curl/lib/curl_md5.h

35 lines
1.3 KiB
C
Raw Normal View History

2010-02-15 03:40:18 +08:00
#ifndef HEADER_CURL_MD5_H
#define HEADER_CURL_MD5_H
2003-05-23 00:23:27 +08:00
/***************************************************************************
2010-02-15 03:40:18 +08:00
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
2003-05-23 00:23:27 +08:00
* \___|\___/|_| \_\_____|
*
2010-02-15 03:40:18 +08:00
* Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
2003-05-23 00:23:27 +08:00
*
* 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.
2010-02-15 03:40:18 +08:00
*
2003-05-23 00:23:27 +08:00
* 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.
*
***************************************************************************/
2010-04-19 17:16:30 +08:00
#ifndef CURL_DISABLE_CRYPTO_AUTH
#include "curl_hmac.h"
extern const HMAC_params Curl_HMAC_MD5[1];
2010-04-19 17:16:30 +08:00
void Curl_md5it(unsigned char *output,
2004-12-15 09:38:25 +08:00
const unsigned char *input);
2010-04-19 17:16:30 +08:00
#endif
2010-02-15 03:40:18 +08:00
#endif /* HEADER_CURL_MD5_H */