summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2022-09-11 17:29:24 +0000
committertb <>2022-09-11 17:29:24 +0000
commit36fc4bda23a64ff200fb4c74704a9382c49eecaf (patch)
tree155670d73923152c2acd2fcbe082e31fdc617d63 /src/lib
parentce3d61d93a7b97cb238fc1581f7ac31201a1a744 (diff)
downloadopenbsd-36fc4bda23a64ff200fb4c74704a9382c49eecaf.tar.gz
openbsd-36fc4bda23a64ff200fb4c74704a9382c49eecaf.tar.bz2
openbsd-36fc4bda23a64ff200fb4c74704a9382c49eecaf.zip
Expose EVP_chacha20_poly1305()
ok jsing
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/evp/evp.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h
index 4a765844c0..d2bb376c88 100644
--- a/src/lib/libcrypto/evp/evp.h
+++ b/src/lib/libcrypto/evp/evp.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp.h,v 1.106 2022/09/11 17:28:33 tb Exp $ */ 1/* $OpenBSD: evp.h,v 1.107 2022/09/11 17:29:24 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -696,11 +696,9 @@ const EVP_CIPHER *EVP_aes_256_ccm(void);
696const EVP_CIPHER *EVP_aes_256_gcm(void); 696const EVP_CIPHER *EVP_aes_256_gcm(void);
697const EVP_CIPHER *EVP_aes_256_wrap(void); 697const EVP_CIPHER *EVP_aes_256_wrap(void);
698const EVP_CIPHER *EVP_aes_256_xts(void); 698const EVP_CIPHER *EVP_aes_256_xts(void);
699#if defined(LIBRESSL_NEXT_API) || defined(LIBRESSL_INTERNAL)
700#if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305) 699#if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305)
701const EVP_CIPHER *EVP_chacha20_poly1305(void); 700const EVP_CIPHER *EVP_chacha20_poly1305(void);
702#endif 701#endif
703#endif
704#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1) 702#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)
705const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void); 703const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void);
706const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void); 704const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void);