diff options
author | tb <> | 2022-09-11 17:29:24 +0000 |
---|---|---|
committer | tb <> | 2022-09-11 17:29:24 +0000 |
commit | 36fc4bda23a64ff200fb4c74704a9382c49eecaf (patch) | |
tree | 155670d73923152c2acd2fcbe082e31fdc617d63 | |
parent | ce3d61d93a7b97cb238fc1581f7ac31201a1a744 (diff) | |
download | openbsd-36fc4bda23a64ff200fb4c74704a9382c49eecaf.tar.gz openbsd-36fc4bda23a64ff200fb4c74704a9382c49eecaf.tar.bz2 openbsd-36fc4bda23a64ff200fb4c74704a9382c49eecaf.zip |
Expose EVP_chacha20_poly1305()
ok jsing
-rw-r--r-- | src/lib/libcrypto/evp/evp.h | 4 |
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); | |||
696 | const EVP_CIPHER *EVP_aes_256_gcm(void); | 696 | const EVP_CIPHER *EVP_aes_256_gcm(void); |
697 | const EVP_CIPHER *EVP_aes_256_wrap(void); | 697 | const EVP_CIPHER *EVP_aes_256_wrap(void); |
698 | const EVP_CIPHER *EVP_aes_256_xts(void); | 698 | const 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) |
701 | const EVP_CIPHER *EVP_chacha20_poly1305(void); | 700 | const 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) |
705 | const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void); | 703 | const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void); |
706 | const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void); | 704 | const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void); |