From: tb Date: Sun, 11 Sep 2022 17:29:24 +0000 (+0000) Subject: Expose EVP_chacha20_poly1305() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=cefced69018742c8bc6ada39401c7ea6dce574df;p=openbsd Expose EVP_chacha20_poly1305() ok jsing --- diff --git a/lib/libcrypto/evp/evp.h b/lib/libcrypto/evp/evp.h index 4a765844c01..d2bb376c886 100644 --- a/lib/libcrypto/evp/evp.h +++ b/lib/libcrypto/evp/evp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: evp.h,v 1.106 2022/09/11 17:28:33 tb Exp $ */ +/* $OpenBSD: evp.h,v 1.107 2022/09/11 17:29:24 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -696,11 +696,9 @@ const EVP_CIPHER *EVP_aes_256_ccm(void); const EVP_CIPHER *EVP_aes_256_gcm(void); const EVP_CIPHER *EVP_aes_256_wrap(void); const EVP_CIPHER *EVP_aes_256_xts(void); -#if defined(LIBRESSL_NEXT_API) || defined(LIBRESSL_INTERNAL) #if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305) const EVP_CIPHER *EVP_chacha20_poly1305(void); #endif -#endif #if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1) const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void); const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void);