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

StackOverflow https://stackoverflow.com/questions/23157257

  •  05-07-2023
  •  | 
  •  

Вопрос

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?

Это было полезно?

Решение

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 {
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top