TheTechZone / signal-protocol.py

Experimental Python binding for signalapp/libsignal
GNU Affero General Public License v3.0
3 stars 0 forks source link

Persistent Store implemenation #2

Open TheTechZone opened 6 months ago

TheTechZone commented 6 months ago

Currently, the library only supports in memory storage for the message sessions. Ideally, we would also have a way to persist this to a database and load it dynamically.

A possible flow for doing this would be:

Once we have a working impl, we can see where it is best to use it (e.g. should we discard the inmem storage altogether or maybe just fetch from db / save from db on certain lifecycle events of mitmproxy -- proxy started / stopped).