/Zephyr-latest/samples/tfm_integration/psa_crypto/src/ |
D | util_sformat.c | 29 uint32_t ca; /* Current address. */ in sf_hex_tabulate_16() local 59 ca = fmt->addr; in sf_hex_tabulate_16() 64 ca++; in sf_hex_tabulate_16() 67 if (cpos == 16 || ca == ea) { in sf_hex_tabulate_16() 70 if (ca == ea) { in sf_hex_tabulate_16() 72 if (ca % 16) { in sf_hex_tabulate_16() 75 (16 - ca % 16) * 3, in sf_hex_tabulate_16() 80 &data[idx - (ca % 16)], in sf_hex_tabulate_16() 81 ca - fmt->addr < 16 ? in sf_hex_tabulate_16() 82 idx % 16 : ca % 16, in sf_hex_tabulate_16() [all …]
|
/Zephyr-latest/samples/net/sockets/http_server/src/certs/ |
D | gen_ca_cert.sh | 4 # Generate a root CA private key 10 # Generate a root CA certificate using private key 17 -subj "/O=Zephyrproject/CN=Zephyrproject Sample Development CA"
|
D | gen_server_cert.sh | 21 echo "basicConstraints=critical,CA:FALSE" >> server_csr.ext 26 # Create a server certificate by signing the server CSR using the CA cert/key 30 -CA ca_cert.pem \ 34 -CAserial ca.srl \
|
/Zephyr-latest/subsys/net/l2/ieee802154/ |
D | Kconfig.radio | 29 bool "IEEE 802.15.4 unslotted CSMA-CA medium access protocol" 31 Use CSMA-CA mechanism (listen-before-talk with exponential backoff) 54 The maximum number of backoffs the CSMA-CA algorithm will attempt 63 The minimum value of the backoff exponent (BE) in the CSMA-CA 72 The maximum value of the backoff exponent (BE) in the CSMA-CA
|
D | ieee802154_priv.h | 26 * algorithm (CSMA/CA, ALOHA, etc.) and re-transmission protocol. See sections 6.2.5 (random 41 * @brief This function implements the configured channel access algorithm (CSMA/CA, ALOHA,
|
/Zephyr-latest/tests/net/socket/tls_ext/ |
D | CMakeLists.txt | 12 ${ZEPHYR_BASE}/samples/net/sockets/echo_server/src/ca.der 13 ${gen_dir}/ca.inc 29 # since it seems to be the only one that is signed by a ca
|
/Zephyr-latest/samples/net/secure_mqtt_sensor_actuator/src/tls_config/ |
D | cert.h | 10 /* The CA certficate of the MQTT broker should be included here 13 * "cat ca.crt | sed -e '1d;$d' | base64 -d |xxd -i" 17 /* CA certificate for Mosquitto public broker
|
/Zephyr-latest/drivers/ieee802154/ |
D | Kconfig.cc13xx_cc26xx | 35 The maximum number of backoffs the CSMA-CA algorithm will attempt 44 The minimum value of the backoff exponent (BE) in the CSMA-CA 53 The maximum value of the backoff exponent (BE) in the CSMA-CA 77 clear channel assessment (CCA) modes 1 or 3 in the CSMA/CA
|
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/ |
D | CMakeLists.txt | 13 NOT EXISTS ${APPLICATION_SOURCE_DIR}/src/creds/ca.c) 20 set(creds "src/creds/ca.c" "src/creds/key.c" "src/creds/cert.c")
|
/Zephyr-latest/tests/net/socket/tls_ext/src/ |
D | main.c | 78 * @brief The Certificate Authority (CA) Certificate 80 * The client needs the CA cert to verify the server public key. TLS client 85 * the server also needs the CA cert in order to verify the client. This 88 static const unsigned char ca[] = { variable 89 #include "ca.inc" 128 #define ca NULL macro 435 * - ca cert (only when client authentication is required) in setup() 438 * - ca cert (to verify the server) in setup() 446 ca, sizeof(ca)); in setup() 447 zassert_equal(r, 0, "failed to add CA Certificate (%d)", r); in setup()
|
/Zephyr-latest/tests/net/lib/http_server/tls/ |
D | CMakeLists.txt | 16 ${gen_dir}/ca.inc 32 # since it seems to be the only one that is signed by a ca
|
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/src/creds/ |
D | .gitignore | 4 /ca.c
|
/Zephyr-latest/boards/sparkfun/nrf52_sparkfun/ |
D | Kconfig.defconfig | 3 # Copyright (c) 2017 Shawn Nock <shawn@monadnock.ca>
|
D | Kconfig.nrf52_sparkfun | 3 # Copyright (c) 2017 Shawn Nock <shawn@monadnock.ca>
|
/Zephyr-latest/samples/net/sockets/http_server/ |
D | README.rst | 61 by a CA certificate trusted by your browser. 63 The best way to do this is to generate your own CA certificate: 69 Generate a server certificate signed by this CA certificate: 81 The CA certificate should be added to your browser's list of trusted authorities to 83 ``network.http.http2.enforce-tls-profile`` to false, since it seems that using a CA
|
D | Kconfig | 36 with security when using HTTP/2, at a minimum you will need to add the CA
|
/Zephyr-latest/subsys/net/l2/wifi/ |
D | CMakeLists.txt | 50 ${ZEPHYR_BASE}/samples/net/wifi/test_certs/ca.pem 51 ${gen_dir}/ca.pem.inc
|
/Zephyr-latest/cmake/compiler/gcc/ |
D | target_mips.cmake | 2 # Copyright (c) 2021 Remy Luisant <remy@luisant.ca>
|
/Zephyr-latest/samples/subsys/mgmt/hawkbit/src/ |
D | ca_certificate.h | 16 /* GlobalSign Root CA - R2 for https://google.com */
|
/Zephyr-latest/samples/net/sockets/http_get/src/ |
D | ca_certificate.h | 16 /* GlobalSign Root CA - R1 for https://google.com */
|
/Zephyr-latest/tests/net/lib/http_server/tls/src/ |
D | main.c | 49 static const unsigned char ca[] = { variable 50 #include "ca.inc" 238 ca, sizeof(ca)); in setup() 239 zassert_equal(ret, 0, "failed to add CA Certificate (%d)", ret); in setup()
|
/Zephyr-latest/samples/net/secure_mqtt_sensor_actuator/ |
D | README.rst | 85 - Connecting securely using TLS, requires the inclusion of the broker's CA certificate 87 - Download the CA certificate in DER or PEM format from https://test.mosquitto.org 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. 183 …$ mosquitto_pub -d -h <test.mosquitto.org/local broker IP> --cafile <path/to/ca.crt> -t zephyr_sam…
|
/Zephyr-latest/samples/net/sockets/echo_server/src/ |
D | certificate.h | 26 #include "ca.der.inc"
|
/Zephyr-latest/dts/bindings/ethernet/ |
D | adi,adin1110.yaml | 16 local-mac-address = [ CA 2F B7 10 23 63 ];
|
/Zephyr-latest/samples/net/prometheus/src/ |
D | certificate.h | 33 #include "ca.der.inc"
|