Annotation of embedaddon/curl/lib/curl_ntlm_core.h, revision 1.1

1.1     ! misho       1: #ifndef HEADER_CURL_NTLM_CORE_H
        !             2: #define HEADER_CURL_NTLM_CORE_H
        !             3: /***************************************************************************
        !             4:  *                                  _   _ ____  _
        !             5:  *  Project                     ___| | | |  _ \| |
        !             6:  *                             / __| | | | |_) | |
        !             7:  *                            | (__| |_| |  _ <| |___
        !             8:  *                             \___|\___/|_| \_\_____|
        !             9:  *
        !            10:  * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
        !            11:  *
        !            12:  * This software is licensed as described in the file COPYING, which
        !            13:  * you should have received as part of this distribution. The terms
        !            14:  * are also available at https://curl.haxx.se/docs/copyright.html.
        !            15:  *
        !            16:  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
        !            17:  * copies of the Software, and permit persons to whom the Software is
        !            18:  * furnished to do so, under the terms of the COPYING file.
        !            19:  *
        !            20:  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
        !            21:  * KIND, either express or implied.
        !            22:  *
        !            23:  ***************************************************************************/
        !            24: 
        !            25: #include "curl_setup.h"
        !            26: 
        !            27: #if defined(USE_NTLM)
        !            28: 
        !            29: /* If NSS is the first available SSL backend (see order in curl_ntlm_core.c)
        !            30:    then it must be initialized to be used by NTLM. */
        !            31: #if !defined(USE_OPENSSL) && \
        !            32:     !defined(USE_GNUTLS_NETTLE) && \
        !            33:     !defined(USE_GNUTLS) && \
        !            34:     defined(USE_NSS)
        !            35: #define NTLM_NEEDS_NSS_INIT
        !            36: #endif
        !            37: 
        !            38: #if !defined(USE_WINDOWS_SSPI) || defined(USE_WIN32_CRYPTO)
        !            39: 
        !            40: #ifdef USE_OPENSSL
        !            41: #  include <openssl/ssl.h>
        !            42: #endif
        !            43: 
        !            44: /* Define USE_NTRESPONSES in order to make the type-3 message include
        !            45:  * the NT response message. */
        !            46: #define USE_NTRESPONSES
        !            47: 
        !            48: /* Define USE_NTLM2SESSION in order to make the type-3 message include the
        !            49:    NTLM2Session response message, requires USE_NTRESPONSES defined to 1 and
        !            50:    MD5 support */
        !            51: #if defined(USE_NTRESPONSES) && !defined(CURL_DISABLE_CRYPTO_AUTH)
        !            52: #define USE_NTLM2SESSION
        !            53: #endif
        !            54: 
        !            55: /* Define USE_NTLM_V2 in order to allow the type-3 message to include the
        !            56:    LMv2 and NTLMv2 response messages, requires USE_NTRESPONSES defined to 1
        !            57:    and support for 64-bit integers. */
        !            58: #if defined(USE_NTRESPONSES) && (CURL_SIZEOF_CURL_OFF_T > 4)
        !            59: #define USE_NTLM_V2
        !            60: #endif
        !            61: 
        !            62: void Curl_ntlm_core_lm_resp(const unsigned char *keys,
        !            63:                             const unsigned char *plaintext,
        !            64:                             unsigned char *results);
        !            65: 
        !            66: CURLcode Curl_ntlm_core_mk_lm_hash(struct Curl_easy *data,
        !            67:                                    const char *password,
        !            68:                                    unsigned char *lmbuffer /* 21 bytes */);
        !            69: 
        !            70: #ifdef USE_NTRESPONSES
        !            71: CURLcode Curl_ntlm_core_mk_nt_hash(struct Curl_easy *data,
        !            72:                                    const char *password,
        !            73:                                    unsigned char *ntbuffer /* 21 bytes */);
        !            74: 
        !            75: #if defined(USE_NTLM_V2) && !defined(USE_WINDOWS_SSPI)
        !            76: 
        !            77: CURLcode Curl_hmac_md5(const unsigned char *key, unsigned int keylen,
        !            78:                        const unsigned char *data, unsigned int datalen,
        !            79:                        unsigned char *output);
        !            80: 
        !            81: CURLcode Curl_ntlm_core_mk_ntlmv2_hash(const char *user, size_t userlen,
        !            82:                                        const char *domain, size_t domlen,
        !            83:                                        unsigned char *ntlmhash,
        !            84:                                        unsigned char *ntlmv2hash);
        !            85: 
        !            86: CURLcode  Curl_ntlm_core_mk_ntlmv2_resp(unsigned char *ntlmv2hash,
        !            87:                                         unsigned char *challenge_client,
        !            88:                                         struct ntlmdata *ntlm,
        !            89:                                         unsigned char **ntresp,
        !            90:                                         unsigned int *ntresp_len);
        !            91: 
        !            92: CURLcode  Curl_ntlm_core_mk_lmv2_resp(unsigned char *ntlmv2hash,
        !            93:                                       unsigned char *challenge_client,
        !            94:                                       unsigned char *challenge_server,
        !            95:                                       unsigned char *lmresp);
        !            96: 
        !            97: #endif /* USE_NTLM_V2 && !USE_WINDOWS_SSPI */
        !            98: 
        !            99: #endif /* USE_NTRESPONSES */
        !           100: 
        !           101: #endif /* !USE_WINDOWS_SSPI || USE_WIN32_CRYPTO */
        !           102: 
        !           103: #endif /* USE_NTLM */
        !           104: 
        !           105: #endif /* HEADER_CURL_NTLM_CORE_H */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>