Merge "Fix case on SIP HMAC enums" into main

This commit is contained in:
Gil Cukierman 2023-12-18 19:20:36 +00:00 committed by Android (Google) Code Review
commit e3339a65bb
2 changed files with 4 additions and 4 deletions

View file

@ -64,9 +64,9 @@ enum SecurityAlgorithm {
DES_EDE3_CBC = 72,
AES_EDE3_CBC = 73,
HMAC_SHA1_96 = 74,
HMAC_SHA1_96_null = 75,
HMAC_SHA1_96_NULL = 75,
HMAC_MD5_96 = 76,
HMAC_MD5_96_null = 77,
HMAC_MD5_96_NULL = 77,
SRTP_AES_COUNTER = 87,
SRTP_AES_F8 = 88,
SRTP_HMAC_SHA1 = 89,

View file

@ -67,9 +67,9 @@ enum SecurityAlgorithm {
DES_EDE3_CBC = 72,
AES_EDE3_CBC = 73,
HMAC_SHA1_96 = 74,
HMAC_SHA1_96_null = 75,
HMAC_SHA1_96_NULL = 75,
HMAC_MD5_96 = 76,
HMAC_MD5_96_null = 77,
HMAC_MD5_96_NULL = 77,
// RTP (see 3GPP TS 33.328)
SRTP_AES_COUNTER = 87,