blob: f2618e94c39073a0f9980707226db6e3a88de012 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// SPDX-FileCopyrightText: 2022 Melvin Keskin <melvo@olomono.de>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#ifndef QXMPPATMTRUSTSTORAGE_H
#define QXMPPATMTRUSTSTORAGE_H
#include "QXmppTrustStorage.h"
#include <QList>
class QXmppTrustMessageKeyOwner;
class QXMPP_EXPORT QXmppAtmTrustStorage : virtual public QXmppTrustStorage
{
public:
virtual ~QXmppAtmTrustStorage() = default;
virtual QXmppTask<void> addKeysForPostponedTrustDecisions(const QString &encryption, const QByteArray &senderKeyId, const QList<QXmppTrustMessageKeyOwner> &keyOwners) = 0;
virtual QXmppTask<void> removeKeysForPostponedTrustDecisions(const QString &encryption, const QList<QByteArray> &keyIdsForAuthentication, const QList<QByteArray> &keyIdsForDistrusting) = 0;
virtual QXmppTask<void> removeKeysForPostponedTrustDecisions(const QString &encryption, const QList<QByteArray> &senderKeyIds) = 0;
virtual QXmppTask<void> removeKeysForPostponedTrustDecisions(const QString &encryption) = 0;
virtual QXmppTask<QHash<bool, QMultiHash<QString, QByteArray>>> keysForPostponedTrustDecisions(const QString &encryption, const QList<QByteArray> &senderKeyIds = {}) = 0;
};
#endif // QXMPPATMTRUSTSTORAGE_H
|