unit1612.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. #include "curlcheck.h"
  25. #include "curl_hmac.h"
  26. #include "curl_md5.h"
  27. static CURLcode unit_setup(void)
  28. {
  29. return CURLE_OK;
  30. }
  31. static void unit_stop(void)
  32. {
  33. }
  34. UNITTEST_START
  35. #if (defined(USE_CURL_NTLM_CORE) && !defined(USE_WINDOWS_SSPI)) \
  36. || !defined(CURL_DISABLE_DIGEST_AUTH)
  37. const char password[] = "Pa55worD";
  38. const char string1[] = "1";
  39. const char string2[] = "hello-you-fool";
  40. unsigned char output[HMAC_MD5_LENGTH];
  41. unsigned char *testp = output;
  42. Curl_hmacit(Curl_HMAC_MD5,
  43. (const unsigned char *) password, strlen(password),
  44. (const unsigned char *) string1, strlen(string1),
  45. output);
  46. verify_memory(testp,
  47. "\xd1\x29\x75\x43\x58\xdc\xab\x78\xdf\xcd\x7f\x2b\x29\x31\x13"
  48. "\x37", HMAC_MD5_LENGTH);
  49. Curl_hmacit(Curl_HMAC_MD5,
  50. (const unsigned char *) password, strlen(password),
  51. (const unsigned char *) string2, strlen(string2),
  52. output);
  53. verify_memory(testp,
  54. "\x75\xf1\xa7\xb9\xf5\x40\xe5\xa4\x98\x83\x9f\x64\x5a\x27\x6d"
  55. "\xd0", HMAC_MD5_LENGTH);
  56. #endif
  57. UNITTEST_STOP