2
0

curl_ntlm_core.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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) 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.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. * SPDX-License-Identifier: curl
  24. *
  25. ***************************************************************************/
  26. #include "curl_setup.h"
  27. #if defined(USE_CURL_NTLM_CORE)
  28. /* Helpers to generate function byte arguments in little endian order */
  29. #define SHORTPAIR(x) ((int)((x) & 0xff)), ((int)(((x) >> 8) & 0xff))
  30. #define LONGQUARTET(x) ((int)((x) & 0xff)), ((int)(((x) >> 8) & 0xff)), \
  31. ((int)(((x) >> 16) & 0xff)), ((int)(((x) >> 24) & 0xff))
  32. void Curl_ntlm_core_lm_resp(const unsigned char *keys,
  33. const unsigned char *plaintext,
  34. unsigned char *results);
  35. CURLcode Curl_ntlm_core_mk_lm_hash(const char *password,
  36. unsigned char *lmbuffer /* 21 bytes */);
  37. CURLcode Curl_ntlm_core_mk_nt_hash(const char *password,
  38. unsigned char *ntbuffer /* 21 bytes */);
  39. #if !defined(USE_WINDOWS_SSPI)
  40. CURLcode Curl_hmac_md5(const unsigned char *key, unsigned int keylen,
  41. const unsigned char *data, unsigned int datalen,
  42. unsigned char *output);
  43. CURLcode Curl_ntlm_core_mk_ntlmv2_hash(const char *user, size_t userlen,
  44. const char *domain, size_t domlen,
  45. unsigned char *ntlmhash,
  46. unsigned char *ntlmv2hash);
  47. CURLcode Curl_ntlm_core_mk_ntlmv2_resp(unsigned char *ntlmv2hash,
  48. unsigned char *challenge_client,
  49. struct ntlmdata *ntlm,
  50. unsigned char **ntresp,
  51. unsigned int *ntresp_len);
  52. CURLcode Curl_ntlm_core_mk_lmv2_resp(unsigned char *ntlmv2hash,
  53. unsigned char *challenge_client,
  54. unsigned char *challenge_server,
  55. unsigned char *lmresp);
  56. #endif /* !USE_WINDOWS_SSPI */
  57. #endif /* USE_CURL_NTLM_CORE */
  58. #endif /* HEADER_CURL_NTLM_CORE_H */