1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 17:53:13 +02:00

irc: drop support of DH-BLOWFISH and DH-AES SASL mechanisms (closes #175)

This commit is contained in:
Sébastien Helleu
2021-06-15 21:49:45 +02:00
parent 51740eb21e
commit e8cdda318f
34 changed files with 106 additions and 507 deletions
-8
View File
@@ -502,14 +502,6 @@ IRC_PROTOCOL_CALLBACK(authenticate)
case IRC_SASL_MECHANISM_EXTERNAL:
answer = strdup ("+");
break;
case IRC_SASL_MECHANISM_DH_BLOWFISH:
answer = irc_sasl_mechanism_dh_blowfish (
argv[1], sasl_username, sasl_password, &sasl_error);
break;
case IRC_SASL_MECHANISM_DH_AES:
answer = irc_sasl_mechanism_dh_aes (
argv[1], sasl_username, sasl_password, &sasl_error);
break;
}
if (answer)
{