Skip to content

Commit c1cca34

Browse files
committed
Add DTLS-SRTP protection profiles from RFC 7714
1 parent 491007f commit c1cca34

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

crypto/src/crypto/tls/SrtpProtectionProfile.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,11 @@ public abstract class SrtpProtectionProfile
1111
public const int SRTP_AES128_CM_HMAC_SHA1_32 = 0x0002;
1212
public const int SRTP_NULL_HMAC_SHA1_80 = 0x0005;
1313
public const int SRTP_NULL_HMAC_SHA1_32 = 0x0006;
14+
15+
/*
16+
* RFC 7714 14.2.
17+
*/
18+
public const int SRTP_AEAD_AES_128_GCM = 0x0007;
19+
public const int SRTP_AEAD_AES_256_GCM = 0x0008;
1420
}
1521
}

0 commit comments

Comments
 (0)