| 1 | // | 
|---|
| 2 | // PBKDF2EngineTest.h | 
|---|
| 3 | // | 
|---|
| 4 | // Definition of the PBKDF2EngineTest class. | 
|---|
| 5 | // | 
|---|
| 6 | // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. | 
|---|
| 7 | // and Contributors. | 
|---|
| 8 | // | 
|---|
| 9 | // SPDX-License-Identifier:	BSL-1.0 | 
|---|
| 10 | // | 
|---|
| 11 |  | 
|---|
| 12 |  | 
|---|
| 13 | #ifndef PBKDF2EngineTest_INCLUDED | 
|---|
| 14 | #define PBKDF2EngineTest_INCLUDED | 
|---|
| 15 |  | 
|---|
| 16 |  | 
|---|
| 17 | #include "Poco/Foundation.h" | 
|---|
| 18 | #include "Poco/CppUnit/TestCase.h" | 
|---|
| 19 |  | 
|---|
| 20 |  | 
|---|
| 21 | class PBKDF2EngineTest: public CppUnit::TestCase | 
|---|
| 22 | { | 
|---|
| 23 | public: | 
|---|
| 24 | PBKDF2EngineTest(const std::string& name); | 
|---|
| 25 | ~PBKDF2EngineTest(); | 
|---|
| 26 |  | 
|---|
| 27 | void testPBKDF2a(); | 
|---|
| 28 | void testPBKDF2b(); | 
|---|
| 29 | void testPBKDF2c(); | 
|---|
| 30 | void testPBKDF2d(); | 
|---|
| 31 | void testPBKDF2e(); | 
|---|
| 32 | void testPBKDF2f(); | 
|---|
| 33 |  | 
|---|
| 34 | void setUp(); | 
|---|
| 35 | void tearDown(); | 
|---|
| 36 |  | 
|---|
| 37 | static CppUnit::Test* suite(); | 
|---|
| 38 |  | 
|---|
| 39 | private: | 
|---|
| 40 | }; | 
|---|
| 41 |  | 
|---|
| 42 |  | 
|---|
| 43 | #endif // PBKDF2EngineTest_INCLUDED | 
|---|
| 44 |  | 
|---|