Introduce a base class for hashes

This commit is contained in:
hashlag
2025-08-09 17:28:53 +03:00
parent f19ea0bc1c
commit 3841242bdb
5 changed files with 37 additions and 12 deletions

View File

@@ -1,8 +1,8 @@
#include <gtest/gtest.h>
#include "Md4.hpp"
#include "Hashing/Md4.hpp"
using namespace Chaos::Md4;
using namespace Chaos::Hashing::Md4;
TEST(Md4Tests, RFCTest)
{

View File

@@ -1,8 +1,8 @@
#include <gtest/gtest.h>
#include "Md5.hpp"
#include "Hashing/Md5.hpp"
using namespace Chaos::Md5;
using namespace Chaos::Hashing::Md5;
TEST(Md5Tests, RFCTest)
{