2011-09-03 10:06:10 -04:00
|
|
|
#ifndef HEADER_CURL_HTTP_DIGEST_H
|
|
|
|
#define HEADER_CURL_HTTP_DIGEST_H
|
2003-05-22 12:09:54 -04:00
|
|
|
/***************************************************************************
|
2006-09-07 17:49:20 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2003-05-22 12:09:54 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2014-11-05 07:05:34 -05:00
|
|
|
* Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2003-05-22 12:09:54 -04: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.
|
2006-09-07 17:49:20 -04:00
|
|
|
*
|
2003-05-22 12:09:54 -04: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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2003-05-22 12:09:54 -04:00
|
|
|
|
|
|
|
/* this is for digest header input */
|
2014-11-05 07:05:34 -05:00
|
|
|
CURLcode Curl_input_digest(struct connectdata *conn,
|
|
|
|
bool proxy, const char *header);
|
2003-05-22 12:09:54 -04:00
|
|
|
|
|
|
|
/* this is for creating digest header output */
|
|
|
|
CURLcode Curl_output_digest(struct connectdata *conn,
|
2004-05-04 03:52:53 -04:00
|
|
|
bool proxy,
|
2007-08-27 02:31:28 -04:00
|
|
|
const unsigned char *request,
|
|
|
|
const unsigned char *uripath);
|
2003-05-22 18:39:38 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH)
|
|
|
|
void Curl_digest_cleanup(struct SessionHandle *data);
|
|
|
|
#else
|
2011-09-03 10:06:10 -04:00
|
|
|
#define Curl_digest_cleanup(x) Curl_nop_stmt
|
2006-09-07 17:49:20 -04:00
|
|
|
#endif
|
|
|
|
|
2011-09-03 10:06:10 -04:00
|
|
|
#endif /* HEADER_CURL_HTTP_DIGEST_H */
|