summaryrefslogtreecommitdiffstats
path: root/providers/implementations/digests
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-10-04 15:25:59 +0200
committerRichard Levitte <levitte@openssl.org>2019-10-10 14:12:15 +0200
commitddd21319e94636f308e115fd05cc48e7a8eadc55 (patch)
tree0899840884488f0c3fd1a915d495fdb485855814 /providers/implementations/digests
parentaf3e7e1bccbed8e3b958488a07daf5a8f4115fa9 (diff)
Cleanup: move remaining providers/common/include/internal/*.h
The end up in providers/common/include/prov/. All inclusions are adjusted accordingly. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10088)
Diffstat (limited to 'providers/implementations/digests')
-rw-r--r--providers/implementations/digests/mdc2_prov.c2
-rw-r--r--providers/implementations/digests/sha3_prov.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/providers/implementations/digests/mdc2_prov.c b/providers/implementations/digests/mdc2_prov.c
index 27770f0820..4a7d3a43ab 100644
--- a/providers/implementations/digests/mdc2_prov.c
+++ b/providers/implementations/digests/mdc2_prov.c
@@ -14,7 +14,7 @@
#include <openssl/err.h>
#include "prov/digestcommon.h"
#include "prov/implementations.h"
-#include "internal/providercommonerr.h"
+#include "prov/providercommonerr.h"
static OSSL_OP_digest_set_ctx_params_fn mdc2_set_ctx_params;
static OSSL_OP_digest_settable_ctx_params_fn mdc2_settable_ctx_params;
diff --git a/providers/implementations/digests/sha3_prov.c b/providers/implementations/digests/sha3_prov.c
index 79cc617517..251039e992 100644
--- a/providers/implementations/digests/sha3_prov.c
+++ b/providers/implementations/digests/sha3_prov.c
@@ -16,7 +16,7 @@
#include "internal/sha3.h"
#include "prov/digestcommon.h"
#include "prov/implementations.h"
-#include "internal/providercommonerr.h"
+#include "prov/providercommonerr.h"
/*
* Forward declaration of any unique methods implemented here. This is not strictly