fiw windows tests

This commit is contained in:
Andrei Yankovich 2023-07-18 22:01:06 +02:00
parent 9c9b053369
commit 820c04db17
2 changed files with 5 additions and 0 deletions

View File

@ -62,6 +62,7 @@ public:
* @see IAsyncEncription::encript
*/
virtual QByteArray decrypt(const QByteArray& message, const QByteArray& key) = 0;
/**
* @brief encrypt This method encript @a message using @a key.
* @param message This is a message that should be decripted.

View File

@ -25,7 +25,11 @@ public:
//test long messages
#ifdef Q_OS_UNIX
const int Mb = 1024 * 1024; //1 mb
#else
const int Mb = 1024 * 100; //100 kb
#endif
testImpl(QByteArray(Mb, 'c'));
} ;