From c94289bc2acc2f8d1324c76001a45aa333b4b54a Mon Sep 17 00:00:00 2001 From: keremcadirci Date: Wed, 4 Dec 2024 11:42:26 +0300 Subject: [PATCH] SRTP_AES256 is added according draft-ietf-avt-dtls-srtp-00 --- crypto/src/tls/SrtpProtectionProfile.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crypto/src/tls/SrtpProtectionProfile.cs b/crypto/src/tls/SrtpProtectionProfile.cs index e81988e417..32eafe427e 100644 --- a/crypto/src/tls/SrtpProtectionProfile.cs +++ b/crypto/src/tls/SrtpProtectionProfile.cs @@ -12,6 +12,12 @@ public abstract class SrtpProtectionProfile public const int SRTP_NULL_HMAC_SHA1_80 = 0x0005; public const int SRTP_NULL_HMAC_SHA1_32 = 0x0006; + /* + * draft-ietf-avt-dtls-srtp-00 3.2.2 + */ + public const int SRTP_AES256_CM_HMAC_SHA1_80 = 0x0003; + public const int SRTP_AES256_CM_HMAC_SHA1_32 = 0x0004; + /* * RFC 7714 14.2. */