Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2014-06-20 23:00:00 +0400
committerAdam Langley <agl@chromium.org>2014-06-21 00:17:34 +0400
commitfd772a5aebeeaafb591903d509b187d7d41c5d69 (patch)
treed511e7b0e890c8a26dbfdfa33bc3932a8eb83134 /crypto/evp
parenta5fa5b7bb63896853c65fe23863e99b1c354ca97 (diff)
AEAD interface.
This change adds an AEAD interface to EVP and an AES-GCM implementation suitable for use in TLS.
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/evp.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index ce40aa5c..c6f5ab31 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -61,7 +61,10 @@
#include <openssl/stack.h>
/* OpenSSL included digest and cipher functions in this header so we include
- * them for users that still expect that. */
+ * them for users that still expect that.
+ *
+ * TODO(fork): clean up callers so that they include what they use. */
+#include <openssl/aead.h>
#include <openssl/cipher.h>
#include <openssl/digest.h>
#include <openssl/mem.h>