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
26 #include "curl_hmac.h"
27 #include "curl_md5.h"
28
unit_setup(void)29 static CURLcode unit_setup(void)
30 {
31 return CURLE_OK;
32 }
33
unit_stop(void)34 static void unit_stop(void)
35 {
36
37 }
38
39 UNITTEST_START
40
41 #if (defined(USE_CURL_NTLM_CORE) && !defined(USE_WINDOWS_SSPI)) \
42 || !defined(CURL_DISABLE_DIGEST_AUTH)
43
44 const char password[] = "Pa55worD";
45 const char string1[] = "1";
46 const char string2[] = "hello-you-fool";
47 unsigned char output[HMAC_MD5_LENGTH];
48 unsigned char *testp = output;
49
50 Curl_hmacit(&Curl_HMAC_MD5,
51 (const unsigned char *) password, strlen(password),
52 (const unsigned char *) string1, strlen(string1),
53 output);
54
55 verify_memory(testp,
56 "\xd1\x29\x75\x43\x58\xdc\xab\x78\xdf\xcd\x7f\x2b\x29\x31\x13"
57 "\x37", HMAC_MD5_LENGTH);
58
59 Curl_hmacit(&Curl_HMAC_MD5,
60 (const unsigned char *) password, strlen(password),
61 (const unsigned char *) string2, strlen(string2),
62 output);
63
64 verify_memory(testp,
65 "\x75\xf1\xa7\xb9\xf5\x40\xe5\xa4\x98\x83\x9f\x64\x5a\x27\x6d"
66 "\xd0", HMAC_MD5_LENGTH);
67 #endif
68
69
70 UNITTEST_STOP
71