zoiper when using srtp sends the below crypto in SDP
a=crypto:5 AES_256_CM_HMAC_SHA1_80
a=crypto:6 AES_256_CM_HMAC_SHA1_32
a=crypto:3 AES_192_CM_HMAC_SHA1_80
a=crypto:4 AES_192_CM_HMAC_SHA1_32
a=crypto:1 AES_CM_128_HMAC_SHA1_80
a=crypto:2 AES_CM_128_HMAC_SHA1_32
whereas freeswitch prefers
AES_CM_256_HMAC_SHA1_80
AES_CM_192_HMAC_SHA1_80
AES_CM_128_HMAC_SHA1_80
AES_CM_256_HMAC_SHA1_32
AES_CM_192_HMAC_SHA1_32
AES_CM_128_HMAC_SHA1_32
so in this case only the below 2 match and the rest freeswitch says unsupported
AES_CM_128_HMAC_SHA1_32
AES_CM_128_HMAC_SHA1_80
the rest dont match because the placement of AES_CM_192 in FS and AES_192_CM in zoiper
may i ask why is this the case that zoiper is sending same crypto name with the text all misplaced making it impossible for FS to match and use?