quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

unit1612.c (2187B)


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