mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 00:39:14 +00:00
22 lines
506 B
C++
22 lines
506 B
C++
#pragma once
|
|
#include "ITestClass.h"
|
|
|
|
#include <vector>
|
|
#include <tc/ByteData.h>
|
|
|
|
class crypto_Rsa4096Pkcs1Sha256Signer_TestClass : public ITestClass
|
|
{
|
|
public:
|
|
void runAllTests();
|
|
private:
|
|
void test_Constants();
|
|
void test_UseClassSign();
|
|
void test_UseClassVerify();
|
|
void test_UseUtilFuncSign();
|
|
void test_UseUtilFuncVerify();
|
|
|
|
void test_DoesNothingWhenNotInit();
|
|
void test_InitializeThrowsExceptionOnBadInput();
|
|
void test_SignReturnsFalseOnBadInput();
|
|
void test_VerifyReturnsFalseOnBadInput();
|
|
}; |