Skip to content

Commit 2426cf1

Browse files
Merge pull request #6583 from SparkiDev/certman_split
Moved CertManager APIs into own file
2 parents 9f6ef65 + 52a3d59 commit 2426cf1

11 files changed

Lines changed: 3310 additions & 1997 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ testsuite/testsuite.test
8585
tests/unit.test
8686
tests/bio_write_test.txt
8787
tests/test-log-dump-to-file.txt
88+
tests/cert_cache.tmp
8889
test-write-dhparams.pem
8990
testsuite/*.der
9091
testsuite/*.pem

IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ set(COMPONENT_SRCEXCLUDE
192192
"${WOLFSSL_ROOT}/src/pk.c"
193193
"${WOLFSSL_ROOT}/src/ssl_asn1.c" # included by ssl.c
194194
"${WOLFSSL_ROOT}/src/ssl_bn.c" # included by ssl.c
195+
"${WOLFSSL_ROOT}/src/ssl_certman.c" # included by ssl.c
195196
"${WOLFSSL_ROOT}/src/ssl_misc.c" # included by ssl.c
196197
"${WOLFSSL_ROOT}/src/x509.c"
197198
"${WOLFSSL_ROOT}/src/x509_str.c"

src/include.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ EXTRA_DIST += src/conf.c
2121
EXTRA_DIST += src/pk.c
2222
EXTRA_DIST += src/ssl_asn1.c
2323
EXTRA_DIST += src/ssl_bn.c
24+
EXTRA_DIST += src/ssl_certman.c
2425
EXTRA_DIST += src/ssl_misc.c
2526
EXTRA_DIST += src/x509.c
2627
EXTRA_DIST += src/x509_str.c

0 commit comments

Comments
 (0)