summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crypto/src/crypto/tls/SrtpProtectionProfile.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/src/crypto/tls/SrtpProtectionProfile.cs b/crypto/src/crypto/tls/SrtpProtectionProfile.cs
index 1ce89f85e..6e9091bb9 100644
--- a/crypto/src/crypto/tls/SrtpProtectionProfile.cs
+++ b/crypto/src/crypto/tls/SrtpProtectionProfile.cs
@@ -11,5 +11,11 @@ namespace Org.BouncyCastle.Crypto.Tls
         public const int SRTP_AES128_CM_HMAC_SHA1_32 = 0x0002;
         public const int SRTP_NULL_HMAC_SHA1_80 = 0x0005;
         public const int SRTP_NULL_HMAC_SHA1_32 = 0x0006;
+
+        /*
+         * RFC 7714 14.2.
+         */
+        public const int SRTP_AEAD_AES_128_GCM = 0x0007;
+        public const int SRTP_AEAD_AES_256_GCM = 0x0008;
     }
 }