mediasoup
Version:
Cutting Edge WebRTC Video Conferencing
13 lines (12 loc) • 798 B
JavaScript
;
// automatically generated by the FlatBuffers compiler, do not modify
Object.defineProperty(exports, "__esModule", { value: true });
exports.SrtpCryptoSuite = void 0;
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
var SrtpCryptoSuite;
(function (SrtpCryptoSuite) {
SrtpCryptoSuite[SrtpCryptoSuite["AEAD_AES_256_GCM"] = 0] = "AEAD_AES_256_GCM";
SrtpCryptoSuite[SrtpCryptoSuite["AEAD_AES_128_GCM"] = 1] = "AEAD_AES_128_GCM";
SrtpCryptoSuite[SrtpCryptoSuite["AES_CM_128_HMAC_SHA1_80"] = 2] = "AES_CM_128_HMAC_SHA1_80";
SrtpCryptoSuite[SrtpCryptoSuite["AES_CM_128_HMAC_SHA1_32"] = 3] = "AES_CM_128_HMAC_SHA1_32";
})(SrtpCryptoSuite || (exports.SrtpCryptoSuite = SrtpCryptoSuite = {}));