12 lines
560 B
JavaScript
12 lines
560 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.KeyBackupEncryptionAlgorithm = void 0;
|
|
/**
|
|
* The kinds of key backup encryption algorithms allowed by the spec.
|
|
* @category Models
|
|
*/
|
|
var KeyBackupEncryptionAlgorithm;
|
|
(function (KeyBackupEncryptionAlgorithm) {
|
|
KeyBackupEncryptionAlgorithm["MegolmBackupV1Curve25519AesSha2"] = "m.megolm_backup.v1.curve25519-aes-sha2";
|
|
})(KeyBackupEncryptionAlgorithm || (exports.KeyBackupEncryptionAlgorithm = KeyBackupEncryptionAlgorithm = {}));
|
|
//# sourceMappingURL=KeyBackup.js.map
|