mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-24 22:29:47 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
39 lines
969 B
C++
39 lines
969 B
C++
//
|
|
// CryptTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/CryptTestSuite.cpp#2 $
|
|
//
|
|
// 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 "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(HMACEngineTest::suite());
|
|
pSuite->addTest(PBKDF2EngineTest::suite());
|
|
pSuite->addTest(DigestStreamTest::suite());
|
|
pSuite->addTest(RandomTest::suite());
|
|
pSuite->addTest(RandomStreamTest::suite());
|
|
|
|
return pSuite;
|
|
}
|