/hal_espressif-2.7.6/components/mbedtls/test/ |
D | test_esp_crt_bundle.c | 83 int esp_crt_verify_callback(void *buf, mbedtls_x509_crt *crt, int data, uint32_t *flags); 350 mbedtls_x509_crt crt; variable 355 mbedtls_x509_crt_init( &crt ); 356 mbedtls_x509_crt_parse(&crt, bad_md_crt_pem_start, bad_md_crt_pem_end - bad_md_crt_pem_start); 357 …TEST_ASSERT(mbedtls_x509_crt_verify(&crt, NULL, NULL, NULL, &flags, esp_crt_verify_callback, NULL)… 359 mbedtls_x509_crt_free(&crt); 368 mbedtls_x509_crt crt; variable 373 mbedtls_x509_crt_init( &crt ); 376 …mbedtls_x509_crt_parse(&crt, wrong_sig_crt_pem_start, wrong_sig_crt_pem_end - wrong_sig_crt_pem_st… 377 …TEST_ASSERT(mbedtls_x509_crt_verify(&crt, NULL, NULL, NULL, &flags, esp_crt_verify_callback, NULL)… [all …]
|
D | test_rsa.c | 343 mbedtls_x509_crt crt; in test_cert() local 350 mbedtls_x509_crt_init(&crt); in test_cert() 353 -mbedtls_x509_crt_parse(&crt, in test_cert() 358 rsa = mbedtls_pk_rsa(crt.pk); in test_cert() 366 mbedtls_x509_crt_info(buf, sizeof(buf), "", &crt); in test_cert() 371 mbedtls_x509_crt_free(&crt); in test_cert() 389 mbedtls_x509_crt_free(&crt); in test_cert()
|
/hal_espressif-2.7.6/components/mbedtls/esp_crt_bundle/ |
D | gen_crt_bundle.py | 105 crt = '' 111 crt = '' 114 crt += strg + '\n' 116 … self.certificates.append(x509.load_pem_x509_certificate(crt.encode(), default_backend())) 119 crt += strg 136 for crt in self.certificates: 138 pub_key = crt.public_key() 142 sub_name_der = crt.subject.public_bytes(default_backend()) 174 for name, crt in pem_crts: 176 filtered_crts += crt
|
D | esp_crt_bundle.c | 95 int esp_crt_verify_callback(void *buf, mbedtls_x509_crt *crt, int depth, uint32_t *flags) in esp_crt_verify_callback() argument 97 mbedtls_x509_crt *child = crt; in esp_crt_verify_callback()
|
/hal_espressif-2.7.6/tools/test_apps/protocols/mqtt/publish_connect_test/main/ |
D | component.mk | 1 …S := mqtt_eclipse_org.pem ../ca.crt ../ca.der ../client_pwd.key ../client_pwd.crt ../client_no_pwd…
|
/hal_espressif-2.7.6/examples/protocols/mqtt/ssl_mutual_auth/main/ |
D | component.mk | 1 COMPONENT_EMBED_TXTFILES := client.crt client.key mosquitto.org.crt
|
/hal_espressif-2.7.6/examples/protocols/asio/ssl_client_server/main/ |
D | component.mk | 10 COMPONENT_EMBED_TXTFILES := ca.crt 12 COMPONENT_EMBED_TXTFILES += srv.crt
|
D | CMakeLists.txt | 3 EMBED_TXTFILES ca.crt server.key srv.crt)
|
/hal_espressif-2.7.6/tools/test_apps/protocols/mqtt/publish_connect_test/ |
D | CMakeLists.txt | 14 target_add_binary_data(mqtt_publish_connect_test.elf "ca.crt" TEXT) 17 target_add_binary_data(mqtt_publish_connect_test.elf "client_pwd.crt" TEXT) 19 target_add_binary_data(mqtt_publish_connect_test.elf "client_inv.crt" TEXT)
|
/hal_espressif-2.7.6/examples/wifi/wpa2_enterprise/ |
D | README.md | 17 ## The file wpa2_ca.pem, wpa2_ca.key, wpa2_server.pem, wpa2_server.crt and wpa2_server.key can be u… 69 5. create certs (.crt) for client nd server 70 …key -cert wpa2_ca.pem -in wpa2_client.csr -key (password) -out wpa2_client.crt -extensions xpserve… 71 …key -cert wpa2_ca.pem -in wpa2_server.csr -key (password) -out wpa2_server.crt -extensions xpserve… 74 openssl pkcs12 -export -out wpa2_client.p12 -inkey wpa2_client.key -in wpa2_client.crt 75 openssl pkcs12 -export -out wpa2_server.p12 -inkey wpa2_server.key -in wpa2_server.crt
|
/hal_espressif-2.7.6/examples/protocols/mqtt/ssl_mutual_auth/ |
D | README.md | 37 …mosquitto.org/ssl/index.php), click Submit and copy the downloaded `client.crt` in the `main` dire… 39 Please note, that the supplied files `client.crt` and `client.key` in the `main` directory are only… 41 …icate `mosquitto.org.crt` can be downloaded in pem format from [mosquitto.org.crt](https://test.mo…
|
D | CMakeLists.txt | 12 target_add_binary_data(${CMAKE_PROJECT_NAME}.elf "main/client.crt" TEXT) 14 target_add_binary_data(${CMAKE_PROJECT_NAME}.elf "main/mosquitto.org.crt" TEXT)
|
/hal_espressif-2.7.6/examples/protocols/mqtt/ssl_ds/ |
D | CMakeLists.txt | 19 target_add_binary_data(${CMAKE_PROJECT_NAME}.elf "main/client.crt" TEXT) 20 target_add_binary_data(${CMAKE_PROJECT_NAME}.elf "main/mosquitto.org.crt" TEXT)
|
D | README.md | 41 …mosquitto.org/ssl/index.php), click Submit and copy the downloaded `client.crt` in the `main` dire… 43 Please note, that the supplied file `client.crt` in the `main` directory is only a placeholder for …
|
/hal_espressif-2.7.6/examples/wifi/wpa2_enterprise/main/ |
D | component.mk | 9 COMPONENT_EMBED_TXTFILES += wpa2_client.crt
|
D | CMakeLists.txt | 4 EMBED_TXTFILES wpa2_ca.pem wpa2_client.crt wpa2_client.key)
|
/hal_espressif-2.7.6/examples/protocols/coap_client/main/ |
D | component.mk | 8 COMPONENT_EMBED_TXTFILES := certs/coap_ca.pem certs/coap_client.crt certs/coap_client.key
|
D | CMakeLists.txt | 4 EMBED_TXTFILES certs/coap_ca.pem certs/coap_client.crt certs/coap_client.key)
|
/hal_espressif-2.7.6/examples/protocols/coap_server/main/ |
D | component.mk | 8 COMPONENT_EMBED_TXTFILES := certs/coap_ca.pem certs/coap_server.crt certs/coap_server.key
|
D | CMakeLists.txt | 3 EMBED_TXTFILES certs/coap_ca.pem certs/coap_server.crt certs/coap_server.key)
|
/hal_espressif-2.7.6/tools/test_apps/protocols/openssl/ |
D | CMakeLists.txt | 13 target_add_binary_data(openssl_connect_test.elf "client_certs/ca.crt" TEXT)
|
/hal_espressif-2.7.6/components/coap/port/ |
D | coap_mbedtls.c | 283 get_san_or_cn_from_cert(mbedtls_x509_crt *crt) in get_san_or_cn_from_cert() argument 285 if (crt) { in get_san_or_cn_from_cert() 301 mbedtls_x509_crt_info(buf, sizeof(buf) - 1, "", crt ); in get_san_or_cn_from_cert() 372 cert_verify_callback_mbedtls(void *data, mbedtls_x509_crt *crt, in cert_verify_callback_mbedtls() argument 390 cn = get_san_or_cn_from_cert(crt); in cert_verify_callback_mbedtls() 458 crt->raw.p, in cert_verify_callback_mbedtls() 459 crt->raw.len, in cert_verify_callback_mbedtls()
|
/hal_espressif-2.7.6/components/esp32s2/ld/ |
D | esp32s2.project.ld.in | 293 …ake a point of not including anything from crtbegin.o or crtend.o, as IDF doesn't use toolchain crt
|
/hal_espressif-2.7.6/components/esp32s3/ld/ |
D | esp32s3.project.ld.in | 347 /* Don't include anything from crtbegin.o or crtend.o, as IDF doesn't use toolchain crt */
|
/hal_espressif-2.7.6/components/esp32/ld/ |
D | esp32.project.ld.in | 298 …ake a point of not including anything from crtbegin.o or crtend.o, as IDF doesn't use toolchain crt
|