You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FreeRTOS/FreeRTOS-Plus/Source/Application-Protocols/network_transport
Soren Ptak 6b513cb1a2
Use MbedTLS 3.5.1 and Add TLS 1.3 Support to WinSim Demos (#1135)
* Bump up to MBed-TLS V3.5.1, make changes to Visual Studio Projects to account for this.
* Update MBedTLS Transport files to call psa_crypto_init() if the MBEDTLS_PSA_CRYPTO_C is set.
* Add WIN32_LEAN_AND_MEAN to the corePKCS11_MQTT_Mutual_Auth_Windows_Simulator demo. Add in a check for MBEDTLS_ERR_SSL_RECEIVED_NEW_SESSION_TICKET when making a TLS handshake.
* Change transport interface files from using void * to mbedtls_pk_context * instead per changes in the MbedTLS API.
* Changes to Fleet Provisioning Demo and Demo Setup to use ECDSA keys
* Remove non-32 bit configs from various VisualStudio Projects. Enforce all projects using WIN32_LEAN_AND_MEAN as well as winsock2.h
1 year ago
..
tcp_sockets_wrapper Update TCP socket wrappers to use debug logging level from config files (#1091) 1 year ago
mbedtls_bio_tcp_sockets_wrapper.c Use MbedTLS 3.5.1 and Add TLS 1.3 Support to WinSim Demos (#1135) 1 year ago
mbedtls_bio_tcp_sockets_wrapper.h Use CI-CD-Github-Actions for spelling and formatting, add in the bot formatting action, update the CI-CD workflow files. Fix incorrect spelling and formatting on files. (#1083) 1 year ago
mbedtls_pk_pkcs11.c Use MbedTLS 3.5.1 and Add TLS 1.3 Support to WinSim Demos (#1135) 1 year ago
mbedtls_pkcs11.h Use CI-CD-Github-Actions for spelling and formatting, add in the bot formatting action, update the CI-CD workflow files. Fix incorrect spelling and formatting on files. (#1083) 1 year ago
mbedtls_rng_pkcs11.c Use MbedTLS 3.5.1 and Add TLS 1.3 Support to WinSim Demos (#1135) 1 year ago
readme.txt Restructure platform directory (#382) 4 years ago
transport_mbedtls.c Use MbedTLS 3.5.1 and Add TLS 1.3 Support to WinSim Demos (#1135) 1 year ago
transport_mbedtls.h Use MbedTLS 3.5.1 and Add TLS 1.3 Support to WinSim Demos (#1135) 1 year ago
transport_mbedtls_pkcs11.c Use MbedTLS 3.5.1 and Add TLS 1.3 Support to WinSim Demos (#1135) 1 year ago
transport_mbedtls_pkcs11.h Use MbedTLS 3.5.1 and Add TLS 1.3 Support to WinSim Demos (#1135) 1 year ago
transport_plaintext.c Use CI-CD-Github-Actions for spelling and formatting, add in the bot formatting action, update the CI-CD workflow files. Fix incorrect spelling and formatting on files. (#1083) 1 year ago
transport_plaintext.h Use CI-CD-Github-Actions for spelling and formatting, add in the bot formatting action, update the CI-CD workflow files. Fix incorrect spelling and formatting on files. (#1083) 1 year ago
transport_wolfSSL.c Use CI-CD-Github-Actions for spelling and formatting, add in the bot formatting action, update the CI-CD workflow files. Fix incorrect spelling and formatting on files. (#1083) 1 year ago
transport_wolfSSL.h Use CI-CD-Github-Actions for spelling and formatting, add in the bot formatting action, update the CI-CD workflow files. Fix incorrect spelling and formatting on files. (#1083) 1 year ago

readme.txt

Building a network transport implementation:

1. Go into the sub directory for the TCP/IP stack you are using (e.g. freertos_plus_tcp).
2. Build the wrapper file located in the directory (i.e. sockets_wrapper.c).
3. Select an additional folder based on the TLS stack you are using (e.g. using_mbedtls), or the using_plaintext folder if not using TLS.
4. Build and include all files from the selected folder.