summaryrefslogtreecommitdiff
path: root/src/Types/EncryptionAlgorithm.php
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2025-08-15 15:47:27 +0200
committerDaniel Weipert <git@mail.dweipert.de>2025-08-15 15:47:27 +0200
commita0ad1f5e7fac279b33ea09ca0e347cd7d02cd8ec (patch)
tree15363be13084bd61b386cf817212096089ea508f /src/Types/EncryptionAlgorithm.php
parentc135fcf9041c604b32827a1cb027010bca5915ab (diff)
keys and sync endpoint setup
Diffstat (limited to 'src/Types/EncryptionAlgorithm.php')
-rwxr-xr-xsrc/Types/EncryptionAlgorithm.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Types/EncryptionAlgorithm.php b/src/Types/EncryptionAlgorithm.php
new file mode 100755
index 0000000..5ee89e4
--- /dev/null
+++ b/src/Types/EncryptionAlgorithm.php
@@ -0,0 +1,9 @@
+<?php
+
+namespace App\Types;
+
+enum EncryptionAlgorithm: string
+{
+ case A = "m.olm.v1.curve25519-aes-sha2";
+ case B = "m.megolm.v1.aes-sha2";
+}