summaryrefslogtreecommitdiff
path: root/pjmedia
diff options
context:
space:
mode:
authorRiza Sulistyo <riza@teluu.com>2016-06-10 04:04:09 +0000
committerRiza Sulistyo <riza@teluu.com>2016-06-10 04:04:09 +0000
commit4f9cc0791cef6f1c4460cd941c0bd19afe4c6c0d (patch)
treeafb265d2e009caa868784542e8175752c5d7492e /pjmedia
parent350c47dd6ec40321f6b5748b60d3b626e63be2a5 (diff)
Re #1928(misc) : Align Big-AES names with latest RFC.
Thanks to Alexander Traud for the patch. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@5341 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia')
-rw-r--r--pjmedia/src/pjmedia/transport_srtp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pjmedia/src/pjmedia/transport_srtp.c b/pjmedia/src/pjmedia/transport_srtp.c
index add4b434..9390c645 100644
--- a/pjmedia/src/pjmedia/transport_srtp.c
+++ b/pjmedia/src/pjmedia/transport_srtp.c
@@ -90,19 +90,19 @@ static crypto_suite crypto_suites[] = {
{"NULL", NULL_CIPHER, 0, NULL_AUTH, 0, 0, 0, sec_serv_none},
/* cipher AES_CM_256, auth HMAC_SHA1, auth tag len = 10 octets */
- {"AES_CM_256_HMAC_SHA1_80", AES_ICM, 46, HMAC_SHA1, 20, 10, 10,
+ {"AES_256_CM_HMAC_SHA1_80", AES_ICM, 46, HMAC_SHA1, 20, 10, 10,
sec_serv_conf_and_auth},
/* cipher AES_CM_256, auth HMAC_SHA1, auth tag len = 10 octets */
- {"AES_CM_256_HMAC_SHA1_32", AES_ICM, 46, HMAC_SHA1, 20, 4, 10,
+ {"AES_256_CM_HMAC_SHA1_32", AES_ICM, 46, HMAC_SHA1, 20, 4, 10,
sec_serv_conf_and_auth},
/* cipher AES_CM_192, auth HMAC_SHA1, auth tag len = 10 octets */
- //{"AES_CM_192_HMAC_SHA1_80", AES_ICM, 38, HMAC_SHA1, 20, 10, 10,
+ //{"AES_192_CM_HMAC_SHA1_80", AES_ICM, 38, HMAC_SHA1, 20, 10, 10,
//sec_serv_conf_and_auth},
/* cipher AES_CM_192, auth HMAC_SHA1, auth tag len = 4 octets */
- //{"AES_CM_192_HMAC_SHA1_80", AES_ICM, 38, HMAC_SHA1, 20, 4, 10,
+ //{"AES_192_CM_HMAC_SHA1_80", AES_ICM, 38, HMAC_SHA1, 20, 4, 10,
//sec_serv_conf_and_auth},
/* cipher AES_CM, auth HMAC_SHA1, auth tag len = 10 octets */