Abstract TLS API support (Resolve #2309) (#2342)

Abstract TLS API support (OpenSSL and MbedTLS backends)
This commit is contained in:
yhirose
2026-02-01 23:48:03 -05:00
committed by GitHub
parent dc6faf5c17
commit 6be32a540d
11 changed files with 5535 additions and 2052 deletions

21
justfile Normal file
View File

@@ -0,0 +1,21 @@
set shell := ["bash", "-c"]
default: list
list:
@just --list --unsorted
openssl:
@(cd test && make test && ./test)
@(cd test && make proxy)
mbedtls:
@(cd test && make test_mbedtls && ./test_mbedtls)
@(cd test && make proxy_mbedtls)
fuzz:
@(cd test && make fuzz_test)
build:
@(cd test && make test_split)
@(cd test && make test_split_mbedtls)