mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-27 19:12:26 +01:00
* Added TLS v1.3 sniffer support using static ephemeral key. * Add support for using a static ephemeral DH and ECC keys with TLS v1.3 using `WOLFSSL_STATIC_EPHEMERAL`. * Adds new API's `wolfSSL_CTX_set_ephemeral_key` and `wolfSSL_set_ephemeral_key`. * Expanded TLS extension support in sniffer. * Refactor of the handshake hashing code. * Added parameter checking to the TLS v1.3 key derivations (protects use of "DoTls13Finished" if handshake resources have been free'd). * Added support for loading DH keys via `wc_DhImportKeyPair` and `wc_DhExportKeyPair`, enabled with `WOLFSSL_DH_EXTRA`. * Added sniffer documentation `sslSniffer/README.md`.
18 lines
372 B
Plaintext
18 lines
372 B
Plaintext
# vim:ft=automake
|
|
# All paths should be given relative to the root
|
|
#
|
|
|
|
EXTRA_DIST += \
|
|
certs/statickeys/gen-static.sh
|
|
|
|
# ECC
|
|
EXTRA_DIST += \
|
|
certs/statickeys/ecc-secp256r1.der \
|
|
certs/statickeys/ecc-secp256r1.pem
|
|
|
|
# DH FFDHE Groups
|
|
EXTRA_DIST += \
|
|
certs/statickeys/dh-ffdhe2048-params.pem \
|
|
certs/statickeys/dh-ffdhe2048.der \
|
|
certs/statickeys/dh-ffdhe2048.pem
|