diff options
| author | Steve Holme <steve_holme@hotmail.com> | 2014-04-06 00:16:30 +0100 | 
|---|---|---|
| committer | Steve Holme <steve_holme@hotmail.com> | 2014-04-06 00:35:01 +0100 | 
| commit | ff853960bd7dcf6cfd0ea4ff6a91ea143e27fd4b (patch) | |
| tree | 6f1139288db8ff0b88b51650b0512a9487f72137 /lib/sasl_sspi.c | |
| parent | 2c49e960922129ba971bb4ee4a1767adf54ffae1 (diff) | |
sasl: Renamed SSPI module following short name clash
Diffstat (limited to 'lib/sasl_sspi.c')
| -rw-r--r-- | lib/sasl_sspi.c | 71 | 
1 files changed, 0 insertions, 71 deletions
diff --git a/lib/sasl_sspi.c b/lib/sasl_sspi.c deleted file mode 100644 index 675118ede..000000000 --- a/lib/sasl_sspi.c +++ /dev/null @@ -1,71 +0,0 @@ -/*************************************************************************** - *                                  _   _ ____  _ - *  Project                     ___| | | |  _ \| | - *                             / __| | | | |_) | | - *                            | (__| |_| |  _ <| |___ - *                             \___|\___/|_| \_\_____| - * - * Copyright (C) 2014, Daniel Stenberg, <daniel@haxx.se>, et al. - * - * 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. - * - * RFC2831 DIGEST-MD5 authentication - * RFC4422 Simple Authentication and Security Layer (SASL) - * - ***************************************************************************/ - -#include "curl_setup.h" - -#if defined(USE_WINDOWS_SSPI) - -#include <curl/curl.h> - -/* The last #include file should be: */ -#include "memdebug.h" - -/* - * Curl_sasl_create_digest_md5_message() - * - * This is used to generate an already encoded DIGEST-MD5 response message - * ready for sending to the recipient. - * - * Parameters: - * - * data    [in]     - The session handle. - * chlg64  [in]     - Pointer to the base64 encoded challenge message. - * userp   [in]     - The user name. - * passdwp [in]     - The user's password. - * service [in]     - The service type such as www, smtp, pop or imap. - * outptr  [in/out] - The address where a pointer to newly allocated memory - *                    holding the result will be stored upon completion. - * outlen  [out]    - The length of the output message. - * - * Returns CURLE_OK on success. - */ -CURLcode Curl_sasl_create_digest_md5_message(struct SessionHandle *data, -                                             const char *chlg64, -                                             const char *userp, -                                             const char *passwdp, -                                             const char *service, -                                             char **outptr, size_t *outlen) -{ -  (void)data; -  (void)chlg64; -  (void)userp; -  (void)passwdp; -  (void)outptr; -  (void)outlen; - -  return CURLE_NOT_BUILT_IN; -} - -#endif /* USE_WINDOWS_SSPI */  | 
