diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-08 08:11:28 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-11 21:07:11 +0200 |
commit | 49844a71f0cca3ec36597725f9d14ddf514b88b0 (patch) | |
tree | 2813e8ea53b5bad8b37a6ba061ef146c77258c23 /doc/pl/weechat_user.pl.adoc | |
parent | 5210d501d4052ea55138539efb1f23885376ae05 (diff) | |
download | weechat-49844a71f0cca3ec36597725f9d14ddf514b88b0.zip |
doc: use XDG config directory in SASL ECDSA-NIST256P-CHALLENGE chapter (user's guide) (issue #1285)
Diffstat (limited to 'doc/pl/weechat_user.pl.adoc')
-rw-r--r-- | doc/pl/weechat_user.pl.adoc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/pl/weechat_user.pl.adoc b/doc/pl/weechat_user.pl.adoc index cd2c9963a..5d2f4e148 100644 --- a/doc/pl/weechat_user.pl.adoc +++ b/doc/pl/weechat_user.pl.adoc @@ -2939,13 +2939,18 @@ ECDSA-NIST256P-CHALLENGE (hasło nie potrzebne do połączenia). Klucz można wygenerować za pomocą komendy: ---- -$ openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem +$ openssl ecparam -genkey -name prime256v1 -out ~/.config/weechat/ecdsa.pem ---- +// TRANSLATION MISSING +[NOTE] +You must replace `~/.config/weechat` by the path to your WeeChat config directory +which can also be for example `~/.weechat`. + Klucz publiczny (zakodowany za pomocą base64) uzyskujemy wywołując komendę: ---- -$ openssl ec -noout -text -conv_form compressed -in ~/.weechat/ecdsa.pem | grep '^pub:' -A 3 | tail -n 3 | tr -d ' \n:' | xxd -r -p | base64 +$ openssl ec -noout -text -conv_form compressed -in ~/.config/weechat/ecdsa.pem | grep '^pub:' -A 3 | tail -n 3 | tr -d ' \n:' | xxd -r -p | base64 ---- Połącz się do serwera, zidentyfikuj (na przykład za pomocą "nickserv identify") |