From 8eb46de6f9986168f33c71c42912ede89a6747d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Fri, 10 Feb 2023 16:39:26 +0200 Subject: [PATCH] srtp-utils: Remove unused variable srtp_crypto_suites --- plugins/provider/sip/calls-srtp-utils.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/plugins/provider/sip/calls-srtp-utils.c b/plugins/provider/sip/calls-srtp-utils.c index d744529..f0f620d 100644 --- a/plugins/provider/sip/calls-srtp-utils.c +++ b/plugins/provider/sip/calls-srtp-utils.c @@ -51,16 +51,6 @@ /* The default used in libsrtp (and GstSrtpEnc/GstSrtpDec) */ #define SRTP_DEFAULT_WINDOW_SIZE 128 -const char * srtp_crypto_suites[] = { - "AES_CM_128_HMAC_SHA1_32", /* RFC 4568 */ - "AES_CM_128_HMAC_SHA1_80", /* RFC 4568 */ - "F8_128_HMAC_SHA1_32", /* RFC 4568 but not supported by GstSrtpEnc/GstSrtpDec */ - "AEAD_AES_128_GCM", /* RFC 7714 TODO support in the future */ - "AEAD_AES_256_GCM", /* RFC 7714 TODO support in the future */ - NULL -}; - - static gsize get_key_size_for_suite (calls_srtp_crypto_suite suite) {