4
0
mirror of https://github.com/QuasarApp/Qt-AES.git synced 2025-05-01 07:54:40 +00:00
Matteo B 78efdb4f3f
Adding ECB and CBC modes via AES-NI ()
Added ECB and CBC modes via AES-NI, only is enabled and supported
2020-05-15 16:45:35 -07:00

17 lines
238 B
C++

#include <QCoreApplication>
#include <QTest>
#ifdef __cplusplus
#include "unit_test/aestest.h"
#endif
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
AesTest test1;
QTest::qExec(&test1);
return 0;
}