mirror of
https://github.com/weechat/weechat.git
synced 2026-06-27 13:26:38 +02:00
doc: use '-out' instead of shell redirection for openssl ecparam
Generated with:
$ sed -i 's|openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem|openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem|' $(git grep -l 'openssl ecparam')
There's no reason to involve shell redirection, which we've had since
88073243 (doc: add instructions for SASL "ecdsa-nist256p-challenge",
2015-01-21). We already use -in or -out for our other openssl
invocations, as shown by:
$ git grep 'openssl.*\(<\|>\|-in\|-out\)'
This commit is contained in:
@@ -2687,7 +2687,7 @@ dadurch kein Passwort während des Verbindungsaufbaus benötigt).
|
||||
Ein Schlüssel kann mit folgendem Befehl erzeugt werden:
|
||||
|
||||
----
|
||||
$ openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem
|
||||
$ openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem
|
||||
----
|
||||
|
||||
Um den öffentlichen Schlüssel zu erhalten (base64 enkodiert) muss
|
||||
|
||||
@@ -2629,7 +2629,7 @@ ECDSA-NIST256P-CHALLENGE mechanism (no password is required on connection).
|
||||
You can generate the key with this command:
|
||||
|
||||
----
|
||||
$ openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem
|
||||
$ openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem
|
||||
----
|
||||
|
||||
Get the public key (encoded as base64) with this command:
|
||||
|
||||
@@ -2721,7 +2721,7 @@ connexion).
|
||||
Vous pouvez générer la clé avec cette commande :
|
||||
|
||||
----
|
||||
$ openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem
|
||||
$ openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem
|
||||
----
|
||||
|
||||
Récupérez la clé publique (encodée en base64) avec cette commande :
|
||||
|
||||
@@ -2811,7 +2811,7 @@ ECDSA-NIST256P-CHALLENGE mechanism (no password is required on connection).
|
||||
You can generate the key with this command:
|
||||
|
||||
----
|
||||
$ openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem
|
||||
$ openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem
|
||||
----
|
||||
|
||||
Get the public key (encoded as base64) with this command:
|
||||
|
||||
@@ -2626,7 +2626,7 @@ ECDSA-NIST256P-CHALLENGE を使って認証を行うためには、秘密鍵を
|
||||
鍵を作成するには、以下のコマンドを使ってください:
|
||||
|
||||
----
|
||||
$ openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem
|
||||
$ openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem
|
||||
----
|
||||
|
||||
公開鍵を (base64 エンコード形式で) 作成するには、以下のコマンドを使ってください:
|
||||
|
||||
@@ -2648,7 +2648,7 @@ ECDSA-NIST256P-CHALLENGE (hasło nie potrzebne do połączenia).
|
||||
Klucz można wygenerować za pomocą komendy:
|
||||
|
||||
----
|
||||
$ openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem
|
||||
$ openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem
|
||||
----
|
||||
|
||||
Klucz publiczny (zakodowany za pomocą base64) uzyskujemy wywołując komendę:
|
||||
|
||||
Reference in New Issue
Block a user