cmake/Utilities/cmcurl/lib/curl_ntlm_core.h

108 lines
4.1 KiB
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
#ifndef HEADER_CURL_NTLM_CORE_H
#define HEADER_CURL_NTLM_CORE_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2021-09-14 00:13:48 +02:00
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
2015-04-27 22:25:09 +02:00
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
2021-09-14 00:13:48 +02:00
* are also available at https://curl.se/docs/copyright.html.
2015-04-27 22:25:09 +02:00
*
* 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.
*
***************************************************************************/
#include "curl_setup.h"
2021-09-14 00:13:48 +02:00
#if defined(USE_CURL_NTLM_CORE)
2015-04-27 22:25:09 +02:00
2018-01-26 17:06:56 +01:00
/* If NSS is the first available SSL backend (see order in curl_ntlm_core.c)
then it must be initialized to be used by NTLM. */
#if !defined(USE_OPENSSL) && \
2020-08-30 11:54:41 +02:00
!defined(USE_WOLFSSL) && \
2018-01-26 17:06:56 +01:00
!defined(USE_GNUTLS) && \
defined(USE_NSS)
#define NTLM_NEEDS_NSS_INIT
#endif
2020-08-30 11:54:41 +02:00
#if defined(USE_OPENSSL) || defined(USE_WOLFSSL)
#ifdef USE_WOLFSSL
# include <wolfssl/options.h>
#endif
2018-01-26 17:06:56 +01:00
# include <openssl/ssl.h>
2015-04-27 22:25:09 +02:00
#endif
2017-07-20 19:35:53 +02:00
/* Define USE_NTRESPONSES in order to make the type-3 message include
2015-11-17 17:22:37 +01:00
* the NT response message. */
2017-07-20 19:35:53 +02:00
#define USE_NTRESPONSES
2015-11-17 17:22:37 +01:00
2017-07-20 19:35:53 +02:00
/* Define USE_NTLM2SESSION in order to make the type-3 message include the
2021-09-14 00:13:48 +02:00
NTLM2Session response message, requires USE_NTRESPONSES defined to 1 */
#if defined(USE_NTRESPONSES)
2017-07-20 19:35:53 +02:00
#define USE_NTLM2SESSION
2015-11-17 17:22:37 +01:00
#endif
2017-07-20 19:35:53 +02:00
/* Define USE_NTLM_V2 in order to allow the type-3 message to include the
2021-09-14 00:13:48 +02:00
LMv2 and NTLMv2 response messages, requires USE_NTRESPONSES defined to 1 */
#if defined(USE_NTRESPONSES)
2017-07-20 19:35:53 +02:00
#define USE_NTLM_V2
2015-04-27 22:25:09 +02:00
#endif
2021-09-14 00:13:48 +02:00
/* Helpers to generate function byte arguments in little endian order */
#define SHORTPAIR(x) ((int)((x) & 0xff)), ((int)(((x) >> 8) & 0xff))
#define LONGQUARTET(x) ((int)((x) & 0xff)), ((int)(((x) >> 8) & 0xff)), \
((int)(((x) >> 16) & 0xff)), ((int)(((x) >> 24) & 0xff))
2015-04-27 22:25:09 +02:00
void Curl_ntlm_core_lm_resp(const unsigned char *keys,
const unsigned char *plaintext,
unsigned char *results);
2016-09-11 17:22:32 +02:00
CURLcode Curl_ntlm_core_mk_lm_hash(struct Curl_easy *data,
2015-11-17 17:22:37 +01:00
const char *password,
unsigned char *lmbuffer /* 21 bytes */);
2015-04-27 22:25:09 +02:00
2017-07-20 19:35:53 +02:00
#ifdef USE_NTRESPONSES
2016-09-11 17:22:32 +02:00
CURLcode Curl_ntlm_core_mk_nt_hash(struct Curl_easy *data,
2015-04-27 22:25:09 +02:00
const char *password,
unsigned char *ntbuffer /* 21 bytes */);
2017-07-20 19:35:53 +02:00
#if defined(USE_NTLM_V2) && !defined(USE_WINDOWS_SSPI)
2015-11-17 17:22:37 +01:00
CURLcode Curl_hmac_md5(const unsigned char *key, unsigned int keylen,
const unsigned char *data, unsigned int datalen,
unsigned char *output);
2015-04-27 22:25:09 +02:00
CURLcode Curl_ntlm_core_mk_ntlmv2_hash(const char *user, size_t userlen,
const char *domain, size_t domlen,
unsigned char *ntlmhash,
unsigned char *ntlmv2hash);
CURLcode Curl_ntlm_core_mk_ntlmv2_resp(unsigned char *ntlmv2hash,
unsigned char *challenge_client,
struct ntlmdata *ntlm,
unsigned char **ntresp,
unsigned int *ntresp_len);
CURLcode Curl_ntlm_core_mk_lmv2_resp(unsigned char *ntlmv2hash,
unsigned char *challenge_client,
unsigned char *challenge_server,
unsigned char *lmresp);
2015-11-17 17:22:37 +01:00
#endif /* USE_NTLM_V2 && !USE_WINDOWS_SSPI */
#endif /* USE_NTRESPONSES */
2021-09-14 00:13:48 +02:00
#endif /* USE_CURL_NTLM_CORE */
2015-04-27 22:25:09 +02:00
#endif /* HEADER_CURL_NTLM_CORE_H */