unit1612.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2020, Daniel Stenberg, <[email protected]>, 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. ***************************************************************************/
  22. #include "curlcheck.h"
  23. #include "curl_hmac.h"
  24. #include "curl_md5.h"
  25. static CURLcode unit_setup(void)
  26. {
  27. return CURLE_OK;
  28. }
  29. static void unit_stop(void)
  30. {
  31. }
  32. UNITTEST_START
  33. #ifndef CURL_DISABLE_CRYPTO_AUTH
  34. const char password[] = "Pa55worD";
  35. const char string1[] = "1";
  36. const char string2[] = "hello-you-fool";
  37. unsigned char output[HMAC_MD5_LENGTH];
  38. unsigned char *testp = output;
  39. Curl_hmacit(Curl_HMAC_MD5,
  40. (const unsigned char *) password, strlen(password),
  41. (const unsigned char *) string1, strlen(string1),
  42. output);
  43. verify_memory(testp,
  44. "\xd1\x29\x75\x43\x58\xdc\xab\x78\xdf\xcd\x7f\x2b\x29\x31\x13"
  45. "\x37", HMAC_MD5_LENGTH);
  46. Curl_hmacit(Curl_HMAC_MD5,
  47. (const unsigned char *) password, strlen(password),
  48. (const unsigned char *) string2, strlen(string2),
  49. output);
  50. verify_memory(testp,
  51. "\x75\xf1\xa7\xb9\xf5\x40\xe5\xa4\x98\x83\x9f\x64\x5a\x27\x6d"
  52. "\xd0", HMAC_MD5_LENGTH);
  53. #endif
  54. UNITTEST_STOP