aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppAtmManager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Client: Rename send/sendUnencrypted to sendSensitive/sendLinus Jahn2023-01-281-1/+1
|
* Introduce QXmppTask & QXmppPromiseLinus Jahn2023-01-031-50/+51
| | | | | | Closes #502. Co-authored-by: Jonah BrĂ¼chert <jbb@kaidan.im>
* Remove empty handleStanza() implementationsLinus Jahn2022-09-061-5/+0
|
* Stanza: Move E2eeMetadata into own header fileLinus Jahn2022-07-111-0/+1
|
* AtmManager: Send trust messages only to endpoints with authenticated keysMelvin Keskin2022-06-181-1/+5
|
* Move SecurityPolicy, TrustLevel intro extra headersLinus Jahn2022-06-181-9/+10
| | | | | This avoids the need to include the whole TrustStorage in files like SendStanzaParams.h.
* Add QXmppTrustManager as base of trust managers such as QXmppAtmManagerMelvin Keskin2022-05-061-11/+12
|
* AtmManager: Fix memory leaks in tests and apply clang-formatMelvin Keskin2022-03-291-3/+3
|
* Add parameter 'keyOwnerJid' to trust storages' 'trustLevel()'Melvin Keskin2022-03-071-1/+1
|
* Stanza: Make E2eeMetadata optional to avoid allocationLinus Jahn2022-03-031-1/+2
| | | | | | | | | | | Avoids an allocation of the E2eeMetadataPrivate object when it's not used. It doesn't use optional<E2eeMetadata> directly because that wouldn't avoid the allocation and takes up 16 bytes instead of 8. This concept could be generalized and used elsewhere in the code (e.g. extended addresses in the stanza are unused 99% of the time).
* Add QXmppE2eeMetadata used by QXmppStanzaMelvin Keskin2022-03-031-1/+1
| | | | | | That class contains addtional data needed for end-to-end encryption purposes. 'senderKey' is moved from QXmppMessage to QXmppE2eeMetadata. 'sceTimestamp' is introduced.
* AtmManager: Minor clean upLinus Jahn2022-03-031-27/+27
|
* AtmManager: Use QFutureInterface directly without shared_ptrLinus Jahn2022-03-031-43/+46
|
* Split up ATM parts of trust storage and refactor (#388)Melvin Keskin2022-01-151-18/+5
| | | | | | | | | | | | QXmppTrustStorage is now the base class for all trust storages used by end-to-end encryption managers. QXmppAtmTrustStorage is used by QXmppAtmManager. QXmppTrustMemoryStorage is now the base class for all trust storages that use the memory for storing data. QXmppAtmTrustMemoryStorage can be used by QXmppAtmManager. Methods needed by the upcoming OMEMO implementation are added. Some existing methods are refactored.
* Convert copyright headers to REUSELinus Jahn2022-01-141-22/+3
|
* Update copyright years (2022 edition)Linus Jahn2022-01-091-1/+1
|
* AtmManager: Fix compilation with Qt6 (#381)JBB2021-12-051-10/+12
|
* Update to OMEMO 0.8, TM 0.6 and ATM 0.4Melvin Keskin2021-10-101-14/+14
| | | | | | * OMEMO has namespace 'urn:xmpp:omemo:2' and uses SCE 0.4 now * TM has namespace 'urn:xmpp:tm:1' and uses Base64 for key identifiers * ATM uses Base64 for key identifiers
* Client: Require moving the packets/iqs for sendingLinus Jahn2021-09-281-1/+1
|
* AtmManager: Use security policiesMelvin Keskin2021-09-251-3/+17
|
* Add QXmppAtmManagerMelvin Keskin2021-09-161-0/+505