123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef HEADER_CURL_HTTP_DIGEST_H
- #define HEADER_CURL_HTTP_DIGEST_H
- #include "curl_setup.h"
- CURLcode Curl_input_digest(struct connectdata *conn,
- bool proxy, const char *header);
- CURLcode Curl_output_digest(struct connectdata *conn,
- bool proxy,
- const unsigned char *request,
- const unsigned char *uripath);
- #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH)
- void Curl_digest_cleanup(struct Curl_easy *data);
- #else
- #define Curl_digest_cleanup(x) Curl_nop_stmt
- #endif
- #endif
|