From 99d06eb0f0ee2bd85f264d99ce449869d9ef58fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 5 Feb 2022 22:05:25 +0100 Subject: [PATCH] doc: improve SSL_OP_PRIORITIZE_CHACHA description The cipher should be spelled "ChaCha20-Poly1305", i.e., with a hyphen between the encryption and MAC algorithm names. Also change "when client does" to "when the client does." --- doc/api/crypto.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index d246aed02a0786..8d330b92a5af1c 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -5826,8 +5826,8 @@ See the [list of SSL OP Flags][] for details. SSL_OP_PRIORITIZE_CHACHA - Instructs OpenSSL server to prioritize ChaCha20Poly1305 - when client does. + Instructs OpenSSL server to prioritize ChaCha20-Poly1305 + when the client does. This option has no effect if SSL_OP_CIPHER_SERVER_PREFERENCE is not enabled.