2017-10-29 11:17:24 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Toni Spets <toni.spets@iki.fi>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TESTOPENSSHKEY_H
|
|
|
|
#define TESTOPENSSHKEY_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class OpenSSHKey;
|
|
|
|
|
|
|
|
class TestOpenSSHKey : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private slots:
|
2017-11-25 04:31:31 -05:00
|
|
|
void initTestCase();
|
2017-10-29 11:17:24 -04:00
|
|
|
void testParse();
|
2018-02-01 12:00:35 -05:00
|
|
|
void testParseDSA();
|
|
|
|
void testParseRSA();
|
2018-05-20 02:49:47 -04:00
|
|
|
void testParseRSACompare();
|
2021-03-01 23:07:56 -05:00
|
|
|
void testParseECDSA256();
|
|
|
|
void testParseECDSA384();
|
|
|
|
void testParseECDSA521();
|
2018-04-04 21:58:34 -04:00
|
|
|
void testDecryptRSAAES128CBC();
|
|
|
|
void testDecryptOpenSSHAES256CBC();
|
|
|
|
void testDecryptRSAAES256CBC();
|
|
|
|
void testDecryptOpenSSHAES256CTR();
|
|
|
|
void testDecryptRSAAES256CTR();
|
2018-07-13 10:41:47 -04:00
|
|
|
void testDecryptUTF8();
|
2020-02-16 07:44:18 -05:00
|
|
|
void testParseECDSASecurityKey();
|
|
|
|
void testParseED25519SecurityKey();
|
2017-10-29 11:17:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TESTOPENSSHKEY_H
|