From 459b15d451194ee90834ea58bfb8c91479e9ef9b Mon Sep 17 00:00:00 2001 From: Shane Lontis Date: Tue, 16 Jul 2019 09:46:14 +1000 Subject: Add Common shared code needed to move aes ciphers to providers Custom aes ciphers will be placed into multiple new files (instead of the monolithic setup used in the e_aes.c legacy code) so it makes sense to have a header for the platform specific code that needs to be shared between files. modes_lcl.h has also moved to modes_int.h to allow sharing with the provider source. Code that will be common to AEAD ciphers has also been added. These will be used by seperate PR's for GCM, CCM & OCB. Reviewed-by: Matt Caswell Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/9301) --- test/build.info | 2 +- test/modes_internal_test.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/build.info b/test/build.info index e38f142259..6966149811 100644 --- a/test/build.info +++ b/test/build.info @@ -504,7 +504,7 @@ IF[{- !$disabled{tests} -}] DEPEND[asn1_internal_test]=../libcrypto.a libtestutil.a SOURCE[modes_internal_test]=modes_internal_test.c - INCLUDE[modes_internal_test]=.. ../include ../apps/include + INCLUDE[modes_internal_test]=.. ../include ../apps/include ../crypto/include DEPEND[modes_internal_test]=../libcrypto.a libtestutil.a SOURCE[x509_internal_test]=x509_internal_test.c diff --git a/test/modes_internal_test.c b/test/modes_internal_test.c index 656dfab4c5..02e5c8d0a8 100644 --- a/test/modes_internal_test.c +++ b/test/modes_internal_test.c @@ -14,8 +14,8 @@ #include #include -#include "../crypto/modes/modes_lcl.h" #include "testutil.h" +#include "internal/modes_int.h" #include "internal/nelem.h" typedef struct { -- cgit v1.2.3