From 7dd3f77256083a38102657be318dd4901e34f34e Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Wed, 28 Oct 2015 13:47:39 -0400 Subject: [PATCH] Fix aead.h header typo. EVP_aead_chacha20_poly1305_old is listed twice instead of EVP_aead_chacha20_poly1305. Change-Id: I281eee7a8359cd2a2b04047c829ef351ea4a7b82 Reviewed-on: https://boringssl-review.googlesource.com/6381 Reviewed-by: Adam Langley --- include/openssl/aead.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openssl/aead.h b/include/openssl/aead.h index c3e04473..f719f027 100644 --- a/include/openssl/aead.h +++ b/include/openssl/aead.h @@ -106,7 +106,7 @@ OPENSSL_EXPORT const EVP_AEAD *EVP_aead_chacha20_poly1305_old(void); /* EVP_aead_chacha20_poly1305 is currently an alias for * |EVP_aead_chacha20_poly1305_old|. In the future, the RFC 7539 version will * take this name. */ -OPENSSL_EXPORT const EVP_AEAD *EVP_aead_chacha20_poly1305_old(void); +OPENSSL_EXPORT const EVP_AEAD *EVP_aead_chacha20_poly1305(void); /* EVP_aead_chacha20_poly1305_rfc7539 is the AEAD built from ChaCha20 and * Poly1305 as described in RFC 7539.