From: Willy Tarreau Date: Fri, 24 May 2024 10:08:20 +0000 (+0200) Subject: DOC: config: fix aes_gcm_enc() description text X-Git-Tag: v3.0-dev13~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=77c228f04fca3c85c69a63a73883893ecb0db5b6;p=thirdparty%2Fhaproxy.git DOC: config: fix aes_gcm_enc() description text As reported by Nick Ramirez, it was written "decrypts" instead of "encrypts". No backport needed. --- diff --git a/doc/configuration.txt b/doc/configuration.txt index 3961a1bc7d..804a77e98b 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -19250,7 +19250,7 @@ aes_gcm_dec(,,,) aes_gcm_dec(128,txn.nonce,Zm9vb2Zvb29mb29wZm9vbw==,txn.aead_tag)] aes_gcm_enc(,,,) - Decrypts the raw byte input using the AES128-GCM, AES192-GCM or + Encrypts the raw byte input using the AES128-GCM, AES192-GCM or AES256-GCM algorithm, depending on the parameter. and parameters must be base64 encoded. Last parameter, , must be a variable. The AEAD tag will be stored base64 encoded into that variable.