File indexing completed on 2024-12-22 05:05:17
0001 // SPDX-FileCopyrightText: 2009 Thomas McGuire <mcguire@kde.org> 0002 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0003 0004 #pragma once 0005 0006 #include <QObject> 0007 0008 namespace MimeTreeParser 0009 { 0010 class CryptoHelperTest : public QObject 0011 { 0012 Q_OBJECT 0013 0014 private Q_SLOTS: 0015 void testPMFDEmpty(); 0016 void testPMFDWithNoPGPBlock(); 0017 void testPGPBlockType(); 0018 void testDeterminePGPBlockType(); 0019 void testEmbededPGPBlock(); 0020 void testClearSignedMessage(); 0021 void testMultipleBlockMessage(); 0022 void testDecryptMessage(); 0023 void testDecryptInlineMessage(); 0024 }; 0025 }