Merge pull request #4532 from mhils/issue-4525

fix #4525
This commit is contained in:
Maximilian Hils 2021-03-30 10:02:36 +02:00 committed by GitHub
commit 0e8dd730bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -47,7 +47,12 @@ class Options(optmanager.OptManager):
)
self.add_option(
"cert_passphrase", Optional[str], None,
"Passphrase for decrypting the private key provided in the --cert option."
"""
Passphrase for decrypting the private key provided in the --cert option.
Note that passing cert_passphrase on the command line makes your passphrase visible in your system's
process list. Specify it in config.yaml to avoid this.
"""
)
self.add_option(
"ciphers_client", Optional[str], None,