curl_ntlm_core.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 - 2011, 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 http://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. #include "setup.h"
  25. #if defined(USE_NTLM) && !defined(USE_WINDOWS_SSPI)
  26. #ifdef USE_SSLEAY
  27. # if !defined(OPENSSL_VERSION_NUMBER) && \
  28. !defined(HEADER_SSL_H) && !defined(HEADER_MD5_H)
  29. # error "curl_ntlm_core.h shall not be included before OpenSSL headers."
  30. # endif
  31. # ifdef OPENSSL_NO_MD4
  32. # define USE_NTRESPONSES 0
  33. # define USE_NTLM2SESSION 0
  34. # endif
  35. #endif
  36. /*
  37. * Define USE_NTRESPONSES to 1 in order to make the type-3 message include
  38. * the NT response message. Define USE_NTLM2SESSION to 1 in order to make
  39. * the type-3 message include the NTLM2Session response message, requires
  40. * USE_NTRESPONSES defined to 1.
  41. */
  42. #ifndef USE_NTRESPONSES
  43. # define USE_NTRESPONSES 1
  44. # define USE_NTLM2SESSION 1
  45. #endif
  46. void Curl_ntlm_core_lm_resp(const unsigned char *keys,
  47. const unsigned char *plaintext,
  48. unsigned char *results);
  49. void Curl_ntlm_core_mk_lm_hash(struct SessionHandle *data,
  50. const char *password,
  51. unsigned char *lmbuffer /* 21 bytes */);
  52. #if USE_NTRESPONSES
  53. CURLcode Curl_ntlm_core_mk_nt_hash(struct SessionHandle *data,
  54. const char *password,
  55. unsigned char *ntbuffer /* 21 bytes */);
  56. #endif
  57. #endif /* USE_NTLM && !USE_WINDOWS_SSPI */
  58. #endif /* HEADER_CURL_NTLM_CORE_H */