mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-15 01:07:12 +01:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
39 lines
970 B
C++
39 lines
970 B
C++
//
|
|
// CryptTestSuite.cpp
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "CryptTestSuite.h"
|
|
#include "MD4EngineTest.h"
|
|
#include "MD5EngineTest.h"
|
|
#include "SHA1EngineTest.h"
|
|
#include "SHA2EngineTest.h"
|
|
#include "HMACEngineTest.h"
|
|
#include "PBKDF2EngineTest.h"
|
|
#include "DigestStreamTest.h"
|
|
#include "RandomTest.h"
|
|
#include "RandomStreamTest.h"
|
|
|
|
|
|
CppUnit::Test* CryptTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("CryptTestSuite");
|
|
|
|
pSuite->addTest(MD4EngineTest::suite());
|
|
pSuite->addTest(MD5EngineTest::suite());
|
|
pSuite->addTest(SHA1EngineTest::suite());
|
|
pSuite->addTest(SHA2EngineTest::suite());
|
|
pSuite->addTest(HMACEngineTest::suite());
|
|
pSuite->addTest(PBKDF2EngineTest::suite());
|
|
pSuite->addTest(DigestStreamTest::suite());
|
|
pSuite->addTest(RandomTest::suite());
|
|
pSuite->addTest(RandomStreamTest::suite());
|
|
|
|
return pSuite;
|
|
}
|