mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 14:00:48 +02:00
41fad5f307
Make every --enable-tinytls13 spelling build and pass locally, and grow the CI matrix to cover them. These are fixes found while testing the configs the CI workflow had not actually exercised. - internal.h, internal.c, ssl_load.c: include ML-DSA and Falcon in the pkCurveOID member and producer guards so the PSK plus ML-DSA build compiles. - tls13.c: gate the DoTls13CertificateVerify definition on NO_CERTS to match its call site. - settings.h: let the AES-256 adder survive the floor, default the user_settings path to the SHA-256 floor, make WOLFSSL_NO_MALLOC opt-in so the test suite still runs, and keep ML-DSA ASN.1 for the cert profile. - configure.ac: drive ENABLED_ASM and emit WOLFSSL_NO_ASM for the small C floor, restrict SP math to P-256, strip ML-DSA ASN.1 only on the PSK floor, and print a notice for the reduced security cert verify. - examples: guard the cert loading paths for NO_CERTS and treat NO_CERTS as PSK mode in echoserver and echoclient. - Add examples/configs/tinytls13_smoke.c, an in memory TLS 1.3 handshake test that drives PSK, ECDSA, ML-DSA-65 and RSA-PSS chain verify, plus forced cipher suites, for builds with no example or unit test harness. - certs: add ECDSA leaves signed by the ML-DSA-65 and RSA-PSS CAs so the cert profiles drive a real PQC and PSS chain verify in CI. - .github/workflows/tinytls13.yml: cover every profile and adder, run the smoke handshake on the build verified configs, and least privilege the workflow token.
31 lines
1.5 KiB
Plaintext
31 lines
1.5 KiB
Plaintext
# vim:ft=automake
|
|
# All paths should be given relative to the root
|
|
|
|
EXTRA_DIST += examples/configs/README.md
|
|
EXTRA_DIST += examples/configs/user_settings_all.h
|
|
EXTRA_DIST += examples/configs/user_settings_arduino.h
|
|
EXTRA_DIST += examples/configs/user_settings_baremetal.h
|
|
EXTRA_DIST += examples/configs/user_settings_ca.h
|
|
EXTRA_DIST += examples/configs/user_settings_curve25519nonblock.h
|
|
EXTRA_DIST += examples/configs/user_settings_dtls13.h
|
|
EXTRA_DIST += examples/configs/user_settings_EBSnet.h
|
|
EXTRA_DIST += examples/configs/user_settings_eccnonblock.h
|
|
EXTRA_DIST += examples/configs/user_settings_espressif.h
|
|
EXTRA_DIST += examples/configs/user_settings_fipsv2.h
|
|
EXTRA_DIST += examples/configs/user_settings_fipsv5.h
|
|
EXTRA_DIST += examples/configs/user_settings_min_ecc.h
|
|
EXTRA_DIST += examples/configs/user_settings_openssl_compat.h
|
|
EXTRA_DIST += examples/configs/user_settings_pkcs7.h
|
|
EXTRA_DIST += examples/configs/user_settings_platformio.h
|
|
EXTRA_DIST += examples/configs/user_settings_pq.h
|
|
EXTRA_DIST += examples/configs/user_settings_rsa_only.h
|
|
EXTRA_DIST += examples/configs/user_settings_stm32.h
|
|
EXTRA_DIST += examples/configs/user_settings_template.h
|
|
EXTRA_DIST += examples/configs/user_settings_tls12.h
|
|
EXTRA_DIST += examples/configs/user_settings_tls13.h
|
|
EXTRA_DIST += examples/configs/user_settings_tinytls13.h
|
|
EXTRA_DIST += examples/configs/tinytls13_smoke.c
|
|
EXTRA_DIST += examples/configs/user_settings_wolfboot_keytools.h
|
|
EXTRA_DIST += examples/configs/user_settings_wolfssh.h
|
|
EXTRA_DIST += examples/configs/user_settings_wolftpm.h
|