summaryrefslogtreecommitdiff
path: root/src/Types/EncryptionAlgorithm.php
blob: 5ee89e43a300e9de527238bb2347b8c72e144d55 (plain)
1
2
3
4
5
6
7
8
9
<?php

namespace App\Types;

enum EncryptionAlgorithm: string
{
  case A = "m.olm.v1.curve25519-aes-sha2";
  case B = "m.megolm.v1.aes-sha2";
}