aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppAtmTrustMemoryStorage.h
Commit message (Collapse)AuthorAgeFilesLines
* Introduce QXmppTask & QXmppPromiseLinus Jahn2023-01-031-6/+6
| | | | | | Closes #502. Co-authored-by: Jonah BrĂ¼chert <jbb@kaidan.im>
* Replace raw pointers with unique_ptrLinus Jahn2022-09-021-1/+1
| | | | safer, simpler
* Split up ATM parts of trust storage and refactor (#388)Melvin Keskin2022-01-151-0/+33
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.