mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-06 16:59:03 +00:00
Move dependencies to the top level.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
#include "ITestClass.h"
|
||||
|
||||
#include <vector>
|
||||
#include <tc/ByteData.h>
|
||||
|
||||
class crypto_Rsa4096OaepSha256Encryptor_TestClass : public ITestClass
|
||||
{
|
||||
public:
|
||||
void runAllTests();
|
||||
private:
|
||||
void test_Constants();
|
||||
void test_UseClassDec();
|
||||
void test_UseClassEnc();
|
||||
void test_UseUtilFuncDec();
|
||||
void test_UseUtilFuncEnc();
|
||||
void test_UnspecifiedSeedProducesDifferentBlock();
|
||||
|
||||
void test_DoesNothingWhenNotInit();
|
||||
void test_InitializeThrowsExceptionOnBadInput();
|
||||
void test_EncryptReturnsFalseOnBadInput();
|
||||
void test_DecryptReturnsFalseOnBadInput();
|
||||
};
|
||||
Reference in New Issue
Block a user