summaryrefslogtreecommitdiffstats
path: root/test/endecode_test.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-10-20 18:11:30 +0200
committerRichard Levitte <levitte@openssl.org>2020-10-21 21:10:48 +0200
commit0934cf4834059cf2d6e3b7e4106d5e04f50ed7f5 (patch)
tree949c0f709a0512bea4c5ade63f19c185e6a92c17 /test/endecode_test.c
parent8300a8742b2abc487594a09b5e6ee726dbd30771 (diff)
Unexport internal MSBLOB and PVK functions
The following internal functions are affected: ossl_do_blob_header ossl_do_PVK_header ossl_b2i ossl_b2i_bio This is reflected by moving include/internal/pem.h to include/crypto/pem.h engines/e_loader_attic gets the source code added to it to have continued access to those functions. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13195)
Diffstat (limited to 'test/endecode_test.c')
-rw-r--r--test/endecode_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/endecode_test.c b/test/endecode_test.c
index b882ff85b1..7a901e9793 100644
--- a/test/endecode_test.c
+++ b/test/endecode_test.c
@@ -19,8 +19,8 @@
#include <openssl/encoder.h>
#include <openssl/decoder.h>
-#include "internal/pem.h" /* For PVK and "blob" PEM headers */
#include "internal/cryptlib.h" /* ossl_assert */
+#include "crypto/pem.h" /* For PVK and "blob" PEM headers */
#include "testutil.h"