"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var EncryptionAlgorithm;
(function (EncryptionAlgorithm) {
EncryptionAlgorithm["CBC"] = "cbc";
EncryptionAlgorithm["GCM"] = "gcm";
})(EncryptionAlgorithm = exports.EncryptionAlgorithm || (exports.EncryptionAlgorithm = {}));