tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

MD4Test.cpp (2308B)


      1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 // This file tests the md4.c implementation.
      8 
      9 #include "gtest/gtest.h"
     10 #include "md4.h"
     11 #include "mozilla/ArrayUtils.h"
     12 #include "mozilla/Casting.h"
     13 
     14 struct RFC1320TestParams {
     15  const char* data;
     16  const uint8_t expectedHash[16];
     17 };
     18 
     19 static const RFC1320TestParams RFC1320_TEST_PARAMS[] = {
     20    {"",
     21     {0x31, 0xd6, 0xcf, 0xe0, 0xd1, 0x6a, 0xe9, 0x31, 0xb7, 0x3c, 0x59, 0xd7,
     22      0xe0, 0xc0, 0x89, 0xc0}},
     23    {"a",
     24     {0xbd, 0xe5, 0x2c, 0xb3, 0x1d, 0xe3, 0x3e, 0x46, 0x24, 0x5e, 0x05, 0xfb,
     25      0xdb, 0xd6, 0xfb, 0x24}},
     26    {"abc",
     27     {0xa4, 0x48, 0x01, 0x7a, 0xaf, 0x21, 0xd8, 0x52, 0x5f, 0xc1, 0x0a, 0xe8,
     28      0x7a, 0xa6, 0x72, 0x9d}},
     29    {"message digest",
     30     {0xd9, 0x13, 0x0a, 0x81, 0x64, 0x54, 0x9f, 0xe8, 0x18, 0x87, 0x48, 0x06,
     31      0xe1, 0xc7, 0x01, 0x4b}},
     32    {
     33        "abcdefghijklmnopqrstuvwxyz",
     34        {0xd7, 0x9e, 0x1c, 0x30, 0x8a, 0xa5, 0xbb, 0xcd, 0xee, 0xa8, 0xed, 0x63,
     35         0xdf, 0x41, 0x2d, 0xa9},
     36    },
     37    {
     38        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
     39        {0x04, 0x3f, 0x85, 0x82, 0xf2, 0x41, 0xdb, 0x35, 0x1c, 0xe6, 0x27, 0xe1,
     40         0x53, 0xe7, 0xf0, 0xe4},
     41    },
     42    {
     43        "1234567890123456789012345678901234567890123456789012345678901234567890"
     44        "1234567890",
     45        {0xe3, 0x3b, 0x4d, 0xdc, 0x9c, 0x38, 0xf2, 0x19, 0x9c, 0x3e, 0x7b, 0x16,
     46         0x4f, 0xcc, 0x05, 0x36},
     47    }};
     48 
     49 class psm_MD4 : public ::testing::Test,
     50                public ::testing::WithParamInterface<RFC1320TestParams> {};
     51 
     52 TEST_P(psm_MD4, RFC1320TestValues) {
     53  const RFC1320TestParams& params(GetParam());
     54  uint8_t actualHash[16];
     55  md4sum(mozilla::BitwiseCast<const uint8_t*, const char*>(params.data),
     56         strlen(params.data), actualHash);
     57  EXPECT_TRUE(mozilla::ArrayEqual(actualHash, params.expectedHash))
     58      << "MD4 hashes aren't equal for input: '" << params.data << "'";
     59 }
     60 
     61 INSTANTIATE_TEST_SUITE_P(psm_MD4, psm_MD4,
     62                         testing::ValuesIn(RFC1320_TEST_PARAMS));