00001 /*************************************************************************** 00002 * _ _ ____ _ 00003 * Project ___| | | | _ \| | 00004 * / __| | | | |_) | | 00005 * | (__| |_| | _ <| |___ 00006 * \___|\___/|_| \_\_____| 00007 * 00008 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. 00009 * 00010 * This software is licensed as described in the file COPYING, which 00011 * you should have received as part of this distribution. The terms 00012 * are also available at https://curl.haxx.se/docs/copyright.html. 00013 * 00014 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00015 * copies of the Software, and permit persons to whom the Software is 00016 * furnished to do so, under the terms of the COPYING file. 00017 * 00018 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00019 * KIND, either express or implied. 00020 * 00021 ***************************************************************************/ 00022 #include "curlcheck.h" 00023 00024 #include "curl_md5.h" 00025 00026 static CURLcode unit_setup(void) 00027 { 00028 return CURLE_OK; 00029 } 00030 00031 static void unit_stop(void) 00032 { 00033 00034 } 00035 00036 UNITTEST_START 00037 00038 #ifndef CURL_DISABLE_CRYPTO_AUTH 00039 unsigned char output[16]; 00040 unsigned char *testp = output; 00041 Curl_md5it(output, (const unsigned char *)"1"); 00042 00043 /* !checksrc! disable LONGLINE 2 */ 00044 verify_memory(testp, 00045 "\xc4\xca\x42\x38\xa0\xb9\x23\x82\x0d\xcc\x50\x9a\x6f\x75\x84\x9b", 16); 00046 00047 Curl_md5it(output, (const unsigned char *)"hello-you-fool"); 00048 00049 verify_memory(testp, 00050 "\x88\x67\x0b\x6d\x5d\x74\x2f\xad\xa5\xcd\xf9\xb6\x82\x87\x5f\x22", 16); 00051 #endif 00052 00053 00054 UNITTEST_STOP