From 60a987fd172f743462e0a9c61638279ec7b77f67 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Wed, 15 Jan 2020 11:03:16 +0100 Subject: Implement ChaCha20-poly1305 cipher using native OpenSSL Signed-off-by: Jakub Jelen Reviewed-by: Andreas Schneider --- config.h.cmake | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'config.h.cmake') diff --git a/config.h.cmake b/config.h.cmake index 83612f85..5d62438c 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -103,6 +103,9 @@ /* Define to 1 if you have OpenSSL with X25519 support */ #cmakedefine HAVE_OPENSSL_X25519 1 +/* Define to 1 if you have OpenSSL with Poly1305 support */ +#cmakedefine HAVE_OPENSSL_EVP_POLY1305 1 + /* Define to 1 if you have gcrypt with ChaCha20/Poly1305 support */ #cmakedefine HAVE_GCRYPT_CHACHA_POLY 1 @@ -117,6 +120,9 @@ /* Define to 1 if you have the `EVP_aes128_gcm' function. */ #cmakedefine HAVE_OPENSSL_EVP_AES_GCM 1 +/* Define to 1 if you have the `EVP_chacha20' function. */ +#cmakedefine HAVE_OPENSSL_EVP_CHACHA20 1 + /* Define to 1 if you have the `CRYPTO_THREADID_set_callback' function. */ #cmakedefine HAVE_OPENSSL_CRYPTO_THREADID_SET_CALLBACK 1 -- cgit v1.2.3