2021-12-03 21:47:06 +00:00
|
|
|
/* Cryptographic Abstraction Unit Tests
|
|
|
|
*
|
|
|
|
* Copyright (c) 2021-2022 The OSCAR Team
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
|
|
|
|
|
|
|
#include "tests/AutoTest.h"
|
|
|
|
|
|
|
|
class CryptoTests : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
|
|
void testAES256();
|
|
|
|
void testAES256GCM();
|
|
|
|
void testPBKDF2_SHA256();
|
2021-12-04 23:37:18 +00:00
|
|
|
void testPRS1Benchmarks();
|
2021-12-03 21:47:06 +00:00
|
|
|
};
|
|
|
|
DECLARE_TEST(CryptoTests)
|
|
|
|
|