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 <alangley@gmail.com>2015-10-27 02:21:37 +0300
committerAdam Langley <alangley@gmail.com>2015-10-27 02:26:40 +0300
commit0f9f0ead2e4bf6af2cc07f6cb5337143fb05671b (patch)
tree18de88a476be6f451a308c60e8fa1a0c8c72195b /decrepit
parent75885e29c4f69717ddfbfeef259cfabbf5e26363 (diff)
Fix the shared builders by exporting GCM symbols.
gcm_test.cc needs to access the internal GCM symbols. This is unfortunate because it means that they have to be marked OPENSSL_EXPORT just for this. To compensate, modes.h is removed and its contents copied into crypto/modes/internal.h. Change-Id: I1777b2ef8afd154c43417137673a28598a7ec30e Reviewed-on: https://boringssl-review.googlesource.com/6360 Reviewed-by: Adam Langley <alangley@gmail.com>
Diffstat (limited to 'decrepit')
-rw-r--r--decrepit/xts/xts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/decrepit/xts/xts.c b/decrepit/xts/xts.c
index cf8ad39e..632e0f83 100644
--- a/decrepit/xts/xts.c
+++ b/decrepit/xts/xts.c
@@ -52,7 +52,8 @@
#include <openssl/aes.h>
#include <openssl/cipher.h>
-#include <openssl/modes.h>
+
+#include "../crypto/modes/internal.h"
#if defined(OPENSSL_X86_64) || defined(OPENSSL_X86) || defined(OPENSSL_AARCH64)