ms_message("ZRTP secrets are ready for %s; auth tag algo is %s and cipher algo is %s",(part==ZRTP_SRTP_SECRETS_FOR_SENDER)?"sender":"receiver",(secrets->authTagAlgo==ZRTP_AUTHTAG_HS32)?"HS32":"HS80",(secrets->cipherAlgo==ZRTP_CIPHER_AES3)?"AES256":"AES128");
ms_message("ZRTP secrets are ready for %s; auth tag algo is %s and cipher algo is %s",(part==ZRTP_SRTP_SECRETS_FOR_SENDER)?"sender":"receiver",bzrtp_authtag_toString(secrets->authTagAlgo),bzrtp_cipher_toString(secrets->cipherAlgo));
* This call will trigger an event which shall be catched by linphone_call_handle_stream_events
*
* @param[in] clientData Pointer to our ZrtpContext structure used to retrieve RTP session
* @param[in] sas The SAS string(4 characters, not null terminated, fixed length)
* @param[in] secrets A structure containing the SAS string(null terminated, variable length according to SAS rendering algo choosen) and informations about the crypto algorithms used by ZRTP during negotiation
* @param[in] verified if <code>verified</code> is true then SAS was verified by both parties during a previous call.