Does the Asterisk support SIP authentication using TLS authentciation algorithm SHA-1?

旧城冷巷雨未停 提交于 2019-12-13 03:49:22

问题


I m using Asterisk and I want to know if the User-Agents could register with SIP using TLS authentciation algorithm SHA-1.

Does the Asterisk support SIP authentication using TLS authentciation algorithm SHA-1?


回答1:


Asterisk 1.8 support only md5-based auth

sha1 supported by FreeSwitch.

Asterisk 11 seams support sha-1

 if (!strcasecmp(hash, "sha-1")) {
                        dtls->set_fingerprint(instance, AST_RTP_DTLS_HASH_SHA1, value);
                } else {


来源:https://stackoverflow.com/questions/23157257/does-the-asterisk-support-sip-authentication-using-tls-authentciation-algorithm

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!