diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-09-12 14:15:09 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2016-03-25 15:11:07 +0000 |
commit | e1dca8a11706360ef0f9403492ea4c9b67692615 (patch) | |
tree | 0ba3d121038a8894ccb836ceb13da21df0047b42 /lib/curl_sasl.h | |
parent | 568d26e0f5c3001fbd2c4c0c794b5365e967d379 (diff) | |
download | curl-e1dca8a11706360ef0f9403492ea4c9b67692615.tar.gz |
vauth: Moved the Kerberos V5 authentication code to the new vauth directory
Diffstat (limited to 'lib/curl_sasl.h')
-rw-r--r-- | lib/curl_sasl.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h index e176729f2..7fd658846 100644 --- a/lib/curl_sasl.h +++ b/lib/curl_sasl.h @@ -31,10 +31,6 @@ struct connectdata; struct ntlmdata; #endif -#if defined(USE_KERBEROS5) -struct kerberos5data; -#endif - /* Authentication mechanism flags */ #define SASL_MECH_LOGIN (1 << 0) #define SASL_MECH_PLAIN (1 << 1) @@ -147,30 +143,6 @@ void Curl_sasl_ntlm_cleanup(struct ntlmdata *ntlm); #endif /* USE_NTLM */ -#if defined(USE_KERBEROS5) -/* This is used to generate a base64 encoded GSSAPI (Kerberos V5) user token - message */ -CURLcode Curl_sasl_create_gssapi_user_message(struct SessionHandle *data, - const char *userp, - const char *passwdp, - const char *service, - const bool mutual, - const char *chlg64, - struct kerberos5data *krb5, - char **outptr, size_t *outlen); - -/* This is used to generate a base64 encoded GSSAPI (Kerberos V5) security - token message */ -CURLcode Curl_sasl_create_gssapi_security_message(struct SessionHandle *data, - const char *input, - struct kerberos5data *krb5, - char **outptr, - size_t *outlen); - -/* This is used to clean up the gssapi specific data */ -void Curl_sasl_gssapi_cleanup(struct kerberos5data *krb5); -#endif /* USE_KERBEROS5 */ - /* This is used to cleanup any libraries or curl modules used by the sasl functions */ void Curl_sasl_cleanup(struct connectdata *conn, unsigned int authused); |