From e67d5ee9c8e050c1d0b49de48682549dd2976861 Mon Sep 17 00:00:00 2001 From: Johan Pascal Date: Tue, 5 Apr 2016 10:08:50 +0200 Subject: [PATCH] Fix ZRTP configuration when based on SRTP profile --- coreapi/linphonecall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecall.c b/coreapi/linphonecall.c index 8ce62debe..fb59f9f72 100644 --- a/coreapi/linphonecall.c +++ b/coreapi/linphonecall.c @@ -3403,7 +3403,7 @@ static void setZrtpCryptoTypesParameters(MSZrtpParams *params, LinphoneCore *lc) break; case MS_AES_256_SHA1_32: params->ciphers[params->ciphersCount++] = MS_ZRTP_CIPHER_AES3; - params->authTags[params->authTagsCount++] = MS_ZRTP_AUTHTAG_HS80; + params->authTags[params->authTagsCount++] = MS_ZRTP_AUTHTAG_HS32; break; case MS_CRYPTO_SUITE_INVALID: break;