|
|
#ifndef HEADER_CURL_VAUTH_H |
|
|
#define HEADER_CURL_VAUTH_H |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <curl/curl.h> |
|
|
|
|
|
#include "bufref.h" |
|
|
|
|
|
struct Curl_easy; |
|
|
|
|
|
#if !defined(CURL_DISABLE_DIGEST_AUTH) |
|
|
struct digestdata; |
|
|
#endif |
|
|
|
|
|
#if defined(USE_NTLM) |
|
|
struct ntlmdata; |
|
|
#endif |
|
|
|
|
|
#if defined(USE_KERBEROS5) |
|
|
struct kerberos5data; |
|
|
#endif |
|
|
|
|
|
#if (defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)) && defined(USE_SPNEGO) |
|
|
struct negotiatedata; |
|
|
#endif |
|
|
|
|
|
#if defined(USE_GSASL) |
|
|
struct gsasldata; |
|
|
#endif |
|
|
|
|
|
#if defined(USE_WINDOWS_SSPI) |
|
|
#define GSS_ERROR(status) ((status) & 0x80000000) |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool Curl_auth_allowed_to_host(struct Curl_easy *data); |
|
|
|
|
|
|
|
|
#if !defined(USE_WINDOWS_SSPI) |
|
|
char *Curl_auth_build_spn(const char *service, const char *host, |
|
|
const char *realm); |
|
|
#else |
|
|
TCHAR *Curl_auth_build_spn(const char *service, const char *host, |
|
|
const char *realm); |
|
|
#endif |
|
|
|
|
|
|
|
|
bool Curl_auth_user_contains_domain(const char *user); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_plain_message(const char *authzid, |
|
|
const char *authcid, |
|
|
const char *passwd, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
void Curl_auth_create_login_message(const char *value, struct bufref *out); |
|
|
|
|
|
|
|
|
void Curl_auth_create_external_message(const char *user, struct bufref *out); |
|
|
|
|
|
#ifndef CURL_DISABLE_DIGEST_AUTH |
|
|
|
|
|
CURLcode Curl_auth_create_cram_md5_message(const struct bufref *chlg, |
|
|
const char *userp, |
|
|
const char *passwdp, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
bool Curl_auth_is_digest_supported(void); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_digest_md5_message(struct Curl_easy *data, |
|
|
const struct bufref *chlg, |
|
|
const char *userp, |
|
|
const char *passwdp, |
|
|
const char *service, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_decode_digest_http_message(const char *chlg, |
|
|
struct digestdata *digest); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_digest_http_message(struct Curl_easy *data, |
|
|
const char *userp, |
|
|
const char *passwdp, |
|
|
const unsigned char *request, |
|
|
const unsigned char *uri, |
|
|
struct digestdata *digest, |
|
|
char **outptr, size_t *outlen); |
|
|
|
|
|
|
|
|
void Curl_auth_digest_cleanup(struct digestdata *digest); |
|
|
#endif |
|
|
|
|
|
#ifdef USE_GSASL |
|
|
|
|
|
bool Curl_auth_gsasl_is_supported(struct Curl_easy *data, |
|
|
const char *mech, |
|
|
struct gsasldata *gsasl); |
|
|
|
|
|
CURLcode Curl_auth_gsasl_start(struct Curl_easy *data, |
|
|
const char *userp, |
|
|
const char *passwdp, |
|
|
struct gsasldata *gsasl); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_gsasl_token(struct Curl_easy *data, |
|
|
const struct bufref *chlg, |
|
|
struct gsasldata *gsasl, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
void Curl_auth_gsasl_cleanup(struct gsasldata *digest); |
|
|
#endif |
|
|
|
|
|
#if defined(USE_NTLM) |
|
|
|
|
|
bool Curl_auth_is_ntlm_supported(void); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data, |
|
|
const char *userp, |
|
|
const char *passwdp, |
|
|
const char *service, |
|
|
const char *host, |
|
|
struct ntlmdata *ntlm, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_decode_ntlm_type2_message(struct Curl_easy *data, |
|
|
const struct bufref *type2, |
|
|
struct ntlmdata *ntlm); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_ntlm_type3_message(struct Curl_easy *data, |
|
|
const char *userp, |
|
|
const char *passwdp, |
|
|
struct ntlmdata *ntlm, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
void Curl_auth_cleanup_ntlm(struct ntlmdata *ntlm); |
|
|
#endif |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_oauth_bearer_message(const char *user, |
|
|
const char *host, |
|
|
const long port, |
|
|
const char *bearer, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_xoauth_bearer_message(const char *user, |
|
|
const char *bearer, |
|
|
struct bufref *out); |
|
|
|
|
|
#if defined(USE_KERBEROS5) |
|
|
|
|
|
bool Curl_auth_is_gssapi_supported(void); |
|
|
|
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_gssapi_user_message(struct Curl_easy *data, |
|
|
const char *userp, |
|
|
const char *passwdp, |
|
|
const char *service, |
|
|
const char *host, |
|
|
const bool mutual, |
|
|
const struct bufref *chlg, |
|
|
struct kerberos5data *krb5, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data, |
|
|
const char *authzid, |
|
|
const struct bufref *chlg, |
|
|
struct kerberos5data *krb5, |
|
|
struct bufref *out); |
|
|
|
|
|
|
|
|
void Curl_auth_cleanup_gssapi(struct kerberos5data *krb5); |
|
|
#endif |
|
|
|
|
|
#if defined(USE_SPNEGO) |
|
|
|
|
|
bool Curl_auth_is_spnego_supported(void); |
|
|
|
|
|
|
|
|
|
|
|
CURLcode Curl_auth_decode_spnego_message(struct Curl_easy *data, |
|
|
const char *user, |
|
|
const char *password, |
|
|
const char *service, |
|
|
const char *host, |
|
|
const char *chlg64, |
|
|
struct negotiatedata *nego); |
|
|
|
|
|
|
|
|
|
|
|
CURLcode Curl_auth_create_spnego_message(struct negotiatedata *nego, |
|
|
char **outptr, size_t *outlen); |
|
|
|
|
|
|
|
|
void Curl_auth_cleanup_spnego(struct negotiatedata *nego); |
|
|
|
|
|
#endif |
|
|
|
|
|
#endif |
|
|
|