mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 05:54:59 -04:00
Always communicate device OTK counts to clients (#10485)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
This commit is contained in:
parent
92a882254b
commit
74d09a43d9
5 changed files with 36 additions and 6 deletions
|
@ -127,6 +127,14 @@ class ToDeviceEventTypes:
|
|||
RoomKeyRequest = "m.room_key_request"
|
||||
|
||||
|
||||
class DeviceKeyAlgorithms:
|
||||
"""Spec'd algorithms for the generation of per-device keys"""
|
||||
|
||||
ED25519 = "ed25519"
|
||||
CURVE25519 = "curve25519"
|
||||
SIGNED_CURVE25519 = "signed_curve25519"
|
||||
|
||||
|
||||
class EduTypes:
|
||||
Presence = "m.presence"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue