hydrogen-web/src/matrix/e2ee
Bruno Windels 695996d6e2 add ILogger and ILogExport interface, to give export correct return type
also move logging related types to own file
2021-11-17 11:39:12 +01:00
..
megolm add ILogger and ILogExport interface, to give export correct return type 2021-11-17 11:39:12 +01:00
olm convert SessionDecryption to TS and adapt to use KeyLoader 2021-10-22 17:48:35 +02:00
Account.js prevent double free on olm account when logging out 2021-10-28 11:48:25 +02:00
attachment.js move base64/58 encoding into platform 2021-02-12 16:01:54 +01:00
common.js store e2ee session values as well in localStorage 2021-09-29 11:49:58 +02:00
DecryptionResult.js convert SessionDecryption to TS and adapt to use KeyLoader 2021-10-22 17:48:35 +02:00
Dehydration.js clone key as olm clears it 2021-11-05 20:52:50 +01:00
DeviceTracker.js use same code to add room to identity in migration as in device tracker 2021-08-30 15:05:57 +02:00
OlmWorker.js provide random value for IE11 2020-11-10 18:31:18 +01:00
README.md WIP to store missing session event ids 2021-03-03 14:03:50 +01:00
RoomEncryption.js key backup: add disable button,and enabling add dehydrated device option 2021-10-29 15:48:28 +02:00

Integratation within the sync lifetime cycle

session.prepareSync

Decrypt any device messages, and turn them into RoomKey instances. Any rooms that are not in the sync response but for which we receive keys will be included in the rooms to sync.

Runs before any room.prepareSync, so the new room keys can be passed to each room prepareSync to use in decryption.

room.prepareSync

The session can start its own read/write transactions here, rooms only read from a shared transaction

- rooms (with shared read txn)
    - megolm decryption read using any new keys decrypted by the session.

room.afterPrepareSync

- rooms    
    - megolm async decryption   
        - dispatch to worker

room.writeSync

- rooms (with shared readwrite txn)
    - megolm decryption write, yielding decrypted events
    - use decrypted events to write room summary

session.writeSync

  • writes any room keys that were received

room.afterSync

- rooms
    - emit changes

room.afterSyncCompleted

- session
    - e2ee account
        - generate more otks if needed
        - upload new otks if needed or device keys if not uploaded before
- rooms
    - share new room keys if needed