ssl.c: move TXT and CONF APIs out into conf.c

This commit is contained in:
Sean Parkinson
2022-03-14 13:21:03 +10:00
parent 34e491f39f
commit 343e8bccdd
5 changed files with 1620 additions and 1575 deletions

View File

@@ -24,6 +24,11 @@
#endif
#include <wolfssl/wolfcrypt/settings.h>
#if defined(OPENSSL_EXTRA) && !defined(_WIN32)
/* turn on GNU extensions for XVASPRINTF with wolfSSL_BIO_printf */
#undef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#if !defined(WOLFSSL_BIO_INCLUDED)
#ifndef WOLFSSL_IGNORE_FILE_WARN

1609
src/conf.c Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -16,6 +16,9 @@ BUILT_SOURCES+= $(FIPS_FILES)
MAINTAINERCLEANFILES+= $(FIPS_FILES)
EXTRA_DIST += src/bio.c
EXTRA_DIST += src/conf.c
$(FIPS_FILES):
$(AM_V_at)touch $(srcdir)/$@

1577
src/ssl.c

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,6 @@ BUILT_SOURCES+= $(ASYNC_FILES)
MAINTAINERCLEANFILES+= $(ASYNC_FILES)
EXTRA_DIST += src/bio.c
EXTRA_DIST += wolfcrypt/src/misc.c
EXTRA_DIST += wolfcrypt/src/evp.c
EXTRA_DIST += wolfcrypt/src/asm.c