Lines Matching refs:bundle

7 The ESP x509 Certificate Bundle API provides an easy way to include a bundle of custom x509 root ce…
9 .. note:: The bundle is currently not available when using WolfSSL.
11 The bundle comes with the complete list of root certificates from Mozilla’s NSS root certificate st…
13 When generating the bundle you may choose between:
15 …* The full root certificate bundle from Mozilla, containing more than 130 certificates. The curren…
18 …icate file or a directory containing certificates which then will be added to the generated bundle.
25 Most configuration is done through menuconfig. Make and CMake will generate the bundle according to…
27 * :ref:`CONFIG_MBEDTLS_CERTIFICATE_BUNDLE`: automatically build and attach the bundle.
29 …M_CERTIFICATE_BUNDLE_PATH`: specify the path of any additional certificates to embed in the bundle.
31 To enable the bundle when using ESP-TLS simply pass the function pointer to the bundle attach funct…
39 This is done to avoid embedding the certificate bundle unless activated by the user.
41 If using mbedTLS directly then the bundle may be activated by directly calling the attach function …
54 The list can be downloaded and created by running the script ``mk-ca-bundle.pl`` that is distribute…
57 The common certificates bundle were made by selecting the authorities with a market share of more t…
65bundle is embedded into the app and can be updated along with the app by an OTA update. If you wa…
72 …es ESP-TLS to establish a secure socket connection using the certificate bundle with two custom ce…
74 HTTPS example that uses ESP-TLS and the default bundle: :example:`protocols/https_request`.
76 HTTPS example that uses mbedTLS and the default bundle: :example:`protocols/https_mbedtls`.