diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2025-08-15 15:47:27 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2025-08-15 15:47:27 +0200 |
commit | a0ad1f5e7fac279b33ea09ca0e347cd7d02cd8ec (patch) | |
tree | 15363be13084bd61b386cf817212096089ea508f /src/Types/EncryptionAlgorithm.php | |
parent | c135fcf9041c604b32827a1cb027010bca5915ab (diff) |
keys and sync endpoint setup
Diffstat (limited to 'src/Types/EncryptionAlgorithm.php')
-rwxr-xr-x | src/Types/EncryptionAlgorithm.php | 9 |
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"; +} |