diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-06-01 20:45:11 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-06-01 20:45:11 +0200 |
commit | e365e66eebeeb01ad88f0b9e3f17b135c21afc82 (patch) | |
tree | c788bead2fcb17fbac03f4b65c3f6d714184501c /doc/en | |
parent | 5cffb7179fee6d70d5c8cee5b5c18ec51f1272f6 (diff) | |
download | weechat-e365e66eebeeb01ad88f0b9e3f17b135c21afc82.zip |
irc: add support of SASL mechanisms SCRAM-SHA-1, SCRAM-SHA-256 and SCRAM-SHA-512 (closes #1628)
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/includes/autogen_api_hdata.en.adoc | 4 | ||||
-rw-r--r-- | doc/en/includes/autogen_user_options.en.adoc | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/en/includes/autogen_api_hdata.en.adoc b/doc/en/includes/autogen_api_hdata.en.adoc index dfac74fda..964cc0766 100644 --- a/doc/en/includes/autogen_api_hdata.en.adoc +++ b/doc/en/includes/autogen_api_hdata.en.adoc @@ -233,6 +233,10 @@ _hook_connect_ (pointer, hdata: "hook") + _hook_fd_ (pointer, hdata: "hook") + _hook_timer_connection_ (pointer, hdata: "hook") + _hook_timer_sasl_ (pointer, hdata: "hook") + +_sasl_scram_client_first_ (string) + +_sasl_scram_salted_pwd_ (other) + +_sasl_scram_salted_pwd_size_ (integer) + +_sasl_scram_auth_message_ (string) + _is_connected_ (integer) + _ssl_connected_ (integer) + _disconnected_ (integer) + diff --git a/doc/en/includes/autogen_user_options.en.adoc b/doc/en/includes/autogen_user_options.en.adoc index a61574531..4593d3f1f 100644 --- a/doc/en/includes/autogen_user_options.en.adoc +++ b/doc/en/includes/autogen_user_options.en.adoc @@ -2779,9 +2779,9 @@ ** default value: `+""+` * [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** description: pass:none[mechanism for SASL authentication: "plain" for plain text password, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL cert, "dh-blowfish" for blowfish crypted password (insecure, not recommended), "dh-aes" for AES crypted password (insecure, not recommended)] +** description: pass:none[mechanism for SASL authentication: "plain" for plain text password, "scram-sha-1" for SCRAM authentication with SHA-1 algorithm, "scram-sha-256" for SCRAM authentication with SHA-256 algorithm, "scram-sha-512" for SCRAM authentication with SHA-512 algorithm, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side SSL cert, "dh-blowfish" for blowfish crypted password (insecure, not recommended), "dh-aes" for AES crypted password (insecure, not recommended)] ** type: integer -** values: plain, ecdsa-nist256p-challenge, external, dh-blowfish, dh-aes +** values: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external, dh-blowfish, dh-aes ** default value: `+plain+` * [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* |