2003-05-22 12:23:27 -04:00
|
|
|
#ifndef __HTTP_DIGEST_H
|
|
|
|
#define __HTTP_DIGEST_H
|
2003-05-22 12:09:54 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2004-01-07 04:19:33 -05:00
|
|
|
* Copyright (C) 1998 - 2004, 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.
|
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
CURLDIGEST_NONE, /* not a digest */
|
|
|
|
CURLDIGEST_BAD, /* a digest, but one we don't like */
|
2004-03-31 04:20:27 -05:00
|
|
|
CURLDIGEST_BADALGO, /* unsupported algorithm requested */
|
2004-05-13 10:14:03 -04:00
|
|
|
CURLDIGEST_NOMEM,
|
2003-05-22 12:09:54 -04:00
|
|
|
CURLDIGEST_FINE, /* a digest we act on */
|
|
|
|
|
|
|
|
CURLDIGEST_LAST /* last entry in this enum, don't use */
|
|
|
|
} CURLdigest;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
CURLDIGESTALGO_MD5,
|
|
|
|
CURLDIGESTALGO_MD5SESS
|
|
|
|
};
|
|
|
|
|
|
|
|
/* this is for digest header input */
|
2004-05-04 03:52:53 -04:00
|
|
|
CURLdigest Curl_input_digest(struct connectdata *conn,
|
|
|
|
bool proxy, 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,
|
2003-05-22 12:09:54 -04:00
|
|
|
unsigned char *request,
|
|
|
|
unsigned char *uripath);
|
2003-05-22 18:39:38 -04:00
|
|
|
void Curl_digest_cleanup(struct SessionHandle *data);
|
2004-05-04 03:52:53 -04:00
|
|
|
void Curl_digest_cleanup_one(struct digestdata *dig);
|
2003-05-22 18:39:38 -04:00
|
|
|
|
2003-05-22 12:23:27 -04:00
|
|
|
#endif
|