/Zephyr-latest/tests/net/lib/tls_credentials/src/ |
D | main.c | 102 struct tls_credential *cert, *key, *temp; in test_credential_internal_iterate() local 109 cert = credential_next_get(common_tag, NULL); in test_credential_internal_iterate() 110 zassert_not_null(cert, "Should have find a credential"); in test_credential_internal_iterate() 112 key = credential_next_get(common_tag, cert); in test_credential_internal_iterate() 115 if (cert->type == TLS_CREDENTIAL_PRIVATE_KEY) { in test_credential_internal_iterate() 120 key = cert; in test_credential_internal_iterate() 121 cert = temp; in test_credential_internal_iterate() 124 zassert_equal(cert->type, TLS_CREDENTIAL_SERVER_CERTIFICATE, in test_credential_internal_iterate() 126 zassert_equal(cert->tag, common_tag, "Invalid tag for cert"); in test_credential_internal_iterate() 127 zassert_equal(cert->len, sizeof(test_server_cert), in test_credential_internal_iterate() [all …]
|
/Zephyr-latest/samples/net/sockets/http_client/ |
D | CMakeLists.txt | 14 src/https-cert.der 15 ${gen_dir}/https-cert.der.inc
|
/Zephyr-latest/samples/net/sockets/websocket_client/ |
D | CMakeLists.txt | 14 src/https-cert.der 15 ${gen_dir}/https-cert.der.inc
|
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/ |
D | CMakeLists.txt | 12 NOT EXISTS ${APPLICATION_SOURCE_DIR}/src/creds/cert.c OR 20 set(creds "src/creds/ca.c" "src/creds/key.c" "src/creds/cert.c")
|
D | README.rst | 41 script, which will generate files ``ca.c``, ``cert.c`` and ``key.c``.
|
/Zephyr-latest/drivers/wifi/eswifi/ |
D | eswifi_socket_offload.c | 177 struct tls_credential *cert; in map_credentials() local 187 cert = credential_next_get(tag, NULL); in map_credentials() 188 while (cert != NULL) { in map_credentials() 190 switch (cert->type) { in map_credentials() 209 "PG=%d,%d,%d\r", 0, id, cert->len); in map_credentials() 211 memcpy(&eswifi->buf[bytes], cert->buf, cert->len); in map_credentials() 212 bytes += cert->len; in map_credentials() 213 LOG_DBG("cert write len %d\n", cert->len); in map_credentials() 227 cert = credential_next_get(tag, cert); in map_credentials()
|
/Zephyr-latest/samples/net/sockets/echo_client/ |
D | CMakeLists.txt | 32 src/echo-apps-cert.der 33 ${gen_dir}/echo-apps-cert.der.inc
|
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/src/creds/ |
D | .gitignore | 6 /cert.c
|
/Zephyr-latest/tests/bsim/net/sockets/echo_test/ |
D | CMakeLists.txt | 40 ${echo_client_path}/src/echo-apps-cert.der 41 ${gen_dir}/echo-apps-cert.der.inc
|
/Zephyr-latest/samples/modules/thrift/hello/client/ |
D | CMakeLists.txt | 41 ${ZEPHYR_BASE}/samples/modules/thrift/hello/qemu-cert.pem 53 ${ZEPHYR_BASE}/samples/modules/thrift/hello/native-cert.pem
|
/Zephyr-latest/samples/modules/thrift/hello/server/ |
D | CMakeLists.txt | 41 ${ZEPHYR_BASE}/samples/modules/thrift/hello/qemu-cert.pem 53 ${ZEPHYR_BASE}/samples/modules/thrift/hello/native-cert.pem
|
/Zephyr-latest/samples/net/sockets/dumb_http_server_mt/ |
D | CMakeLists.txt | 13 mt-http-server-cert.der
|
/Zephyr-latest/samples/modules/thrift/hello/ |
D | README.rst | 151 $ ./hello_client_ssl 192.0.2.1 ../native-cert.pem ../native-key.pem ../qemu-cert.pem 196 $ ./hello_server_ssl 0.0.0.0 ../native-cert.pem ../native-key.pem ../qemu-cert.pem
|
/Zephyr-latest/drivers/wifi/simplelink/ |
D | simplelink_sockets.c | 658 struct tls_credential *cert; in map_credentials() local 670 cert = credential_next_get(tag, NULL); in map_credentials() 671 while (cert != NULL) { in map_credentials() 673 switch (cert->type) { in map_credentials() 692 cert->buf, in map_credentials() 693 (SlSocklen_t)cert->len); in map_credentials() 698 cert = credential_next_get(tag, cert); in map_credentials()
|
/Zephyr-latest/samples/net/prometheus/ |
D | CMakeLists.txt | 45 https-server-cert.der
|
/Zephyr-latest/tests/modules/thrift/ThriftTest/ |
D | CMakeLists.txt | 49 ${ZEPHYR_BASE}/samples/modules/thrift/hello/qemu-cert.pem
|
/Zephyr-latest/samples/net/secure_mqtt_sensor_actuator/ |
D | README.rst | 88 - In :file:`tls_config/cert.h`, set ``ca_certificate[]`` to the contents of the cert. 95 The CA cert should be included in the build as described above. 98 Depending on the CA cert being used, additional MbedTLS config options may need to be enabled.
|
/Zephyr-latest/samples/net/sockets/echo_server/ |
D | CMakeLists.txt | 44 echo-apps-cert.der
|
/Zephyr-latest/drivers/modem/ |
D | ublox-sara-r4.c | 1845 struct tls_credential *cert; in map_credentials() local 1855 cert = credential_next_get(tag, NULL); in map_credentials() 1856 while (cert != NULL) { in map_credentials() 1857 switch (cert->type) { in map_credentials() 1871 ret = send_cert(sock, cmd, 1, cert->buf, cert->len, id); in map_credentials() 1876 cert = credential_next_get(tag, cert); in map_credentials()
|
/Zephyr-latest/modules/uoscore-uedhoc/ |
D | CMakeLists.txt | 85 ${UOSCORE_UEDHOC_SRC_DIR}/edhoc/cert.c
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | provisioning.rst | 178 On May 24th 2021, ANSSI `disclosed <https://kb.cert.org/vuls/id/799380>`_
|