summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2021-09-10 00:22:17 +0000
committerYann Ylavic <ylavic@apache.org>2021-09-10 00:22:17 +0000
commite80637be48a55828e2d453113d3ce12dc401bd8e (patch)
tree34de4b3721c1cb957b809b815548e6a4a521a1ea /include
parent163521ebfaa78bec639897b3c4d3bdcd35a9cd1c (diff)
downloadapr-e80637be48a55828e2d453113d3ce12dc401bd8e.tar.gz
apr_crypto: s/APR_CRYPTO_CIPHER_CHACHA20_CTR/APR_CRYPTO_CIPHER_CHACHA20/g
Chacha is a stream cipher, not a block cipher in counter mode. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1893203 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_crypto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apr_crypto.h b/include/apr_crypto.h
index af6acd24d..7b03175f8 100644
--- a/include/apr_crypto.h
+++ b/include/apr_crypto.h
@@ -165,7 +165,7 @@ typedef enum
{
APR_CRYPTO_CIPHER_AUTO, /** Choose the recommended cipher / autodetect the cipher */
APR_CRYPTO_CIPHER_AES_256_CTR, /** AES 256 - CTR mode */
- APR_CRYPTO_CIPHER_CHACHA20_CTR, /** ChaCha20 - CTR mode */
+ APR_CRYPTO_CIPHER_CHACHA20, /** ChaCha20 */
} apr_crypto_cipher_e;
/**