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/de | |
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/de')
-rw-r--r-- | doc/de/includes/autogen_api_hdata.de.adoc | 4 | ||||
-rw-r--r-- | doc/de/includes/autogen_user_options.de.adoc | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/de/includes/autogen_api_hdata.de.adoc b/doc/de/includes/autogen_api_hdata.de.adoc index 5c98a64a7..873beff98 100644 --- a/doc/de/includes/autogen_api_hdata.de.adoc +++ b/doc/de/includes/autogen_api_hdata.de.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/de/includes/autogen_user_options.de.adoc b/doc/de/includes/autogen_user_options.de.adoc index 93d22ce99..265aa6316 100644 --- a/doc/de/includes/autogen_user_options.de.adoc +++ b/doc/de/includes/autogen_user_options.de.adoc @@ -2779,9 +2779,9 @@ ** Standardwert: `+""+` * [[option_irc.server_default.sasl_mechanism]] *irc.server_default.sasl_mechanism* -** Beschreibung: pass:none[Verfahren welches bei einer SASL Authentifizierung angewandt werden soll: "plain" Passwort wird im Klartext gesendet, "ecdsa-nist256p-challenge" für öffentlich/private Schlüsselmethode, "external" SSL Zertifikat welches auf Client Seite vorliegt wird verwendet, "dh-blowfish" Passwort wird mittels blowfish verschlüsselt (unsicher, wird nicht empfohlen), "dh-aes" Passwort wird mittels AES verschlüsselt (unsicher, wird nicht empfohlen)] +** Beschreibung: 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)] ** Typ: integer -** Werte: plain, ecdsa-nist256p-challenge, external, dh-blowfish, dh-aes +** Werte: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external, dh-blowfish, dh-aes ** Standardwert: `+plain+` * [[option_irc.server_default.sasl_password]] *irc.server_default.sasl_password* |