summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJonathon Murphy <jpmurphy@google.com>2023-04-21 16:22:41 +0000
committerJonathon Murphy <jpmurphy@google.com>2023-04-21 16:25:02 +0000
commit29010714734f98d5b96cacaaeff15fc1488714af (patch)
tree1a69579630b626e9a164ec58bf1513722548241d /test
parenteaf2376ff817d2c0019a6064f9d77187b4f70507 (diff)
downloadchrome-ec-29010714734f98d5b96cacaaeff15fc1488714af.tar.gz
Revert "Reland "Use third_party boringssl for AES""
This reverts commit 0164feeebaad4abc7deb510c57ca0707dd2babb1. Reason for revert: Breaks postsubmit b/279174496 Original change's description: > Reland "Use third_party boringssl for AES" > > This is a reland of commit 6fa9cc0c7484be908010a6acdd6547d686234e34 > > Original change's description: > > Use third_party boringssl for AES > > > > The original boringssl copy is not maintainable in the long term. > > We should build it from the upstream version. > > > > BUG=b:248508087, b:273639386 > > TEST=make runhosttests -j > > TEST=make buildall -j > > BRANCH=none > > > > Signed-off-by: Yi Chou <yich@google.com> > > Change-Id: I3ead1244c3c839590281e20e5c4828242933d1f2 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3925087 > > Reviewed-by: Tom Hughes <tomhughes@chromium.org> > > BUG=b:248508087, b:273639386 > TEST=make runhosttests -j > TEST=make buildall -j > BRANCH=none > > Signed-off-by: Yi Chou <yich@google.com> > Cq-Depend: chromium:4439330 > Change-Id: Ic22faafacaf331a1376d094a37c6efe271326d0b > Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4439569 > Reviewed-by: Tom Hughes <tomhughes@chromium.org> Bug: b:248508087, b:273639386 Change-Id: I5cfb826bff10df55bbadf76c6cc2062bc761a6d3 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4456117 Commit-Queue: Jonathon Murphy <jpmurphy@google.com> Commit-Queue: Tom Hughes <tomhughes@chromium.org> Reviewed-by: Tom Hughes <tomhughes@chromium.org> Auto-Submit: Jonathon Murphy <jpmurphy@google.com> Reviewed-by: Jonathon Murphy <jpmurphy@google.com> Tested-by: Jonathon Murphy <jpmurphy@google.com> Owners-Override: Jonathon Murphy <jpmurphy@google.com>
Diffstat (limited to 'test')
-rw-r--r--test/aes.cc9
-rw-r--r--test/test_config.h6
2 files changed, 6 insertions, 9 deletions
diff --git a/test/aes.cc b/test/aes.cc
index 98d79b4b03..d08679d489 100644
--- a/test/aes.cc
+++ b/test/aes.cc
@@ -19,6 +19,8 @@
#include "test_util.h"
extern "C" {
+#include "aes-gcm.h"
+#include "aes.h"
#include "builtin/assert.h"
#include "console.h"
#include "timer.h"
@@ -26,13 +28,6 @@ extern "C" {
#include "watchdog.h"
}
-#include "aes_gcm_helpers.h"
-#include "openssl/aes.h"
-
-/* These must be included after the "openssl/aes.h" */
-#include "crypto/fipsmodule/aes/internal.h"
-#include "crypto/fipsmodule/modes/internal.h"
-
/* Temporary buffer, to avoid using too much stack space. */
static uint8_t tmp[512];
diff --git a/test/test_config.h b/test/test_config.h
index 51c15f4c8c..8f1c482b71 100644
--- a/test/test_config.h
+++ b/test/test_config.h
@@ -31,7 +31,8 @@
#endif
#if defined(TEST_AES) || defined(TEST_CRYPTO_BENCHMARK)
-#define CONFIG_BORINGSSL_CRYPTO
+#define CONFIG_AES
+#define CONFIG_AES_GCM
#endif
#ifdef TEST_BASE32
@@ -109,7 +110,8 @@
#if defined(TEST_FPSENSOR) || defined(TEST_FPSENSOR_STATE) || \
defined(TEST_FPSENSOR_CRYPTO)
-#define CONFIG_BORINGSSL_CRYPTO
+#define CONFIG_AES
+#define CONFIG_AES_GCM
#define CONFIG_ROLLBACK_SECRET_SIZE 32
#define CONFIG_SHA256
#endif