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